[issue6294] Improve shutdown exception ignored message

2016-02-27 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> duplicate status: open -> closed superseder: -> Broken "Exception ignored in:" message on exceptions in __repr__ versions: +Python 3.5, Python 3.6 -Python 3.2 ___ Python tracker

[issue6294] Improve shutdown exception ignored message

2014-12-21 Thread Martin Panter
Martin Panter added the comment: Not sure what the original method to cause this message is. I’m guessing some code was trying to call a function that was set to None by the shutdown process, causing the exception message, and that repr() was also failing, causing the broken wording. Like this

[issue6294] Improve shutdown exception ignored message

2013-05-19 Thread Shriramana Sharma
Changes by Shriramana Sharma : -- nosy: +jamadagni ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue6294] Improve shutdown exception ignored message

2011-02-06 Thread Rob Lourens
Rob Lourens added the comment: I agree with R. David Murray's suggestions, and have implemented it in the attached patch. -- keywords: +patch nosy: +rob.lourens Added file: http://bugs.python.org/file20707/errors.patch ___ Python tracker

[issue6294] Improve shutdown exception ignored message

2009-06-17 Thread R. David Murray
R. David Murray added the comment: Ah, in that case then yes, the message bug can be fixed in 3.1.1 and 2.6.3. As for the message format, the format of messages is not considered part of the Python API, but changes to message formats can nonetheless cause compatibility issues that would argue f

[issue6294] Improve shutdown exception ignored message

2009-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: I should have said 3.1.1. Ie, would this be a bug fix or really a new feature that has to wait. Moot until someone does a patch. -- ___ Python tracker ___

[issue6294] Improve shutdown exception ignored message

2009-06-16 Thread R. David Murray
R. David Murray added the comment: Since 3.1 is in final release candidate, a change like this is not appropriate for 3.1. This error message is generated in PyErr_WriteUnraisable, which is called from many contexts, including __del__ methods. A __del__ method called during shutdown is most lik

[issue6294] Improve shutdown exception ignored message

2009-06-16 Thread Terry J. Reedy
New submission from Terry J. Reedy : When (at least sometimes) exceptions occur during shutdown, warnings like the following appear: Exception TypeError: "'NoneType' object is not callable" in ignored This is apparently meant to be read as Exception <> [was] ignored instead of, for instance E