[issue41270] NamedTemporaryFile is not its own iterator.

2021-11-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Biopython uses next() without iter(), and there is no guarantee that it should work. -- nosy: +brett.cannon, pitrou, serhiy.storchaka ___ Python tracker _

[issue41270] NamedTemporaryFile is not its own iterator.

2021-11-30 Thread Irit Katriel
Change by Irit Katriel : -- type: behavior -> enhancement versions: +Python 3.11 -Python 3.10, Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker __

[issue41270] NamedTemporaryFile is not its own iterator.

2020-10-19 Thread Seth Sims
Change by Seth Sims : -- pull_requests: +21728 pull_request: https://github.com/python/cpython/pull/22766 ___ Python tracker ___ ___

[issue41270] NamedTemporaryFile is not its own iterator.

2020-07-11 Thread Tony
Change by Tony : -- pull_requests: +20590 pull_request: https://github.com/python/cpython/pull/21442 ___ Python tracker ___ ___ Pyth

[issue41270] NamedTemporaryFile is not its own iterator.

2020-07-10 Thread Tony
Change by Tony : -- nosy: +tontinton nosy_count: 3.0 -> 4.0 pull_requests: +20585 pull_request: https://github.com/python/cpython/pull/21439 ___ Python tracker ___

[issue41270] NamedTemporaryFile is not its own iterator.

2020-07-10 Thread Peter
Change by Peter : -- nosy: +maubp ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mai

[issue41270] NamedTemporaryFile is not its own iterator.

2020-07-10 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +20581 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21434 ___ Python tracker _

[issue41270] NamedTemporaryFile is not its own iterator.

2020-07-10 Thread Seth Sims
New submission from Seth Sims : _TemporaryFileWrapper does not proxy __next__ to the underlying file object. There was a discussion on the mailing list in 2016 mentioning this, however it seems it was dropped without a consensus. Biopython encountered this issue (referenced below) and we agre