Imgur / imgurpython

Official Imgur python client library (deprecated)
MIT License
546 stars 116 forks source link

File handle not closed properly when uploading from path. #52

Open Melanpan opened 9 years ago

Melanpan commented 9 years ago

Getting the warning ResourceWarning: unclosed file <_io.BufferedReader on Python 3.5.0.

fd = open(path, 'rb')
contents = fd.read()
b64 = base64.b64encode(contents)

fd isn't closed after uploading.

spuder commented 8 years ago

Related ? https://github.com/Imgur/imgurpython/issues/45