Inada Naoki <songofaca...@gmail.com> added the comment:

>>> ll = [l for l in gzip.GzipFile(filename='data/UTF-8-test_for_gzip.txt.gz')]

This is bad code pattern because you don't close the file explicitly.
Actually, the error caused by the optimization thet iter(GzipFile) returns 
underlaying faster iterator that don't have reference to the GzipFile. So 
GzipFile.__del__ close the file.

Although this is caused by bad code pattern, I must admit this is a regression.
We need to call slow Python function for each lines instead of using fast C 
iterator...

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45475>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to