[issue477863] Print warning at shutdown if gc.garbage not empty

2022-04-10 Thread admin
Change by admin : -- github: None -> 35458 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: I went forward and committed the patch in r83861. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a new patch with doc. -- Added file: http://bugs.python.org/file18394/gc_fini3.patch ___ Python tracker ___ __

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: > - use test.script_helper.run_python rather than rolling your own > run_command (or, at least, just make run_command a thin wrapper around > run_python). I've been trying to trim down the number of different > ways the test suite launches interpreter subprocess

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Nick Coghlan
Nick Coghlan added the comment: Patch looks basically OK on an eyeball scan. A couple of suggestions: - use test.script_helper.run_python rather than rolling your own run_command (or, at least, just make run_command a thin wrapper around run_python). I've been trying to trim down the number o

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gvanrossum, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: More thorough tests. -- Added file: http://bugs.python.org/file18379/gc_fini2.patch ___ Python tracker ___ ___

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file18375/gc_fini.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: New patch with tests. -- Added file: http://bugs.python.org/file18378/gc_fini.patch ___ Python tracker ___ ___

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: needs patch -> patch review Added file: http://bugs.python.org/file18375/gc_fini.patch ___ Python tracker ___ _

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file18374/gc_fini.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. Perhaps I should add tests too. -- keywords: +patch Added file: http://bugs.python.org/file18374/gc_fini.patch ___ Python tracker ___

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-08-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Displaying the full list may be unwieldy if it's very large. Instead, we could by default display the following kind of message: Python warning: 5 uncollectable objects remaining at interpreter shutdown. Use gc.DEBUG_UNCOLLECTABLE to list them. And list gc.g

[issue477863] Print warning at shutdown if gc.garbage not empty

2010-03-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> needs patch title: New gc work -> Print warning at shutdown if gc.garbage not empty versions: +Python 3.2 -Python 3.1 ___ Python tracker __