[issue11346] Generator object should be mentioned in gc module document

2020-11-06 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue11346] Generator object should be mentioned in gc module document

2020-11-04 Thread Irit Katriel
Irit Katriel added the comment: This section is very different now: https://docs.python.org/3/library/gc.html#gc.garbage Should this be closed as out of date? -- nosy: +iritkatriel ___ Python tracker _

[issue11346] Generator object should be mentioned in gc module document

2013-01-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +pitrou stage: -> needs patch type: -> enhancement versions: +Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___ _

[issue11346] Generator object should be mentioned in gc module document

2011-02-27 Thread Atsuo Ishimoto
Atsuo Ishimoto added the comment: Oh, Not only try-finally block, generators contains try-except or with block will be added to gc.garbage. -- ___ Python tracker ___ __

[issue11346] Generator object should be mentioned in gc module document

2011-02-27 Thread Atsuo Ishimoto
New submission from Atsuo Ishimoto : In the gc.garbage of the library ref of gc module, ... this list contains only objects with __del__() methods. This is not true, since gc.garbage will contain generator object with try-finally block. -- assignee: docs@python components: Docume