[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2010-10-17 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Added a note about threads to sys.exit(), and changed os._exit() wording to be clear about process exit, in r85629. -- resolution: - fixed status: open - closed ___ Python tracker

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5962 ___ ___ Python-bugs-list

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2010-07-09 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +exarkun, gps ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5962 ___ ___ Python-bugs-list

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2010-07-08 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I know nothing about this. You might check http://docs.python.org/dev/py3k/ to see if there has been any change or open a discussion on python-list to get suggestions for specific doc updates. -- assignee: georg.brandl - d...@python

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2009-05-07 Thread Pascal Chambon
New submission from Pascal Chambon chambon.pas...@gmail.com: Hello I once was rather confused, because nothing in the sys and os modules mentionned the behaviours that the exit() and _exit() functions were supposed to have when called inside a non-main thread. I've eventually found in