[issue22423] Errors in printing exceptions raised in a thread

2014-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue22423] Errors in printing exceptions raised in a thread

2014-09-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c925b436467a by Serhiy Storchaka in branch '2.7': Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re https://hg.python.org/cpython/rev/c925b436467a New changeset e99a1df8db36 by Serhiy Storchaka in branch '3.4': Issue #2242

[issue22423] Errors in printing exceptions raised in a thread

2014-09-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Senthil for your review. Committed with you suggestion. -- ___ Python tracker ___ ___ Py

[issue22423] Errors in printing exceptions raised in a thread

2014-09-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4baa474b4f31 by Serhiy Storchaka in branch '2.7': Issue #22423: Unhandled exception in thread no longer causes unhandled https://hg.python.org/cpython/rev/4baa474b4f31 New changeset 176579df4edd by Serhiy Storchaka in branch '3.4': Issue #22423: Unh

[issue22423] Errors in printing exceptions raised in a thread

2014-09-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes some bugs in printing exceptions in the threading module. 1. Fixed names of private variables in initialization. This caused unhandled AttributeError. The regression was introduced in changeset e71c3223810f. This part of the patch shou