[issue45614] traceback of exception with non-unicode __module__

2021-11-29 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45614] traceback of exception with non-unicode __module__

2021-11-29 Thread Irit Katriel
Irit Katriel added the comment: New changeset 5b6aa6ce20b5b3b45dec2ebd6355e248cdf2fbcc by Irit Katriel in branch '3.9': bpo-45614: Fix traceback display for exceptions with invalid module name (GH-29726) (GH-29827) https://github.com/python/cpython/commit/5b6aa6ce20b5b3b45dec2ebd6355e248cdf2

[issue45614] traceback of exception with non-unicode __module__

2021-11-29 Thread Irit Katriel
Irit Katriel added the comment: New changeset 4d2cc3ed46d2453bad92243128e237e7febca714 by Irit Katriel in branch '3.10': bpo-45614: Fix traceback display for exceptions with invalid module name (GH-29726) (GH-29826) https://github.com/python/cpython/commit/4d2cc3ed46d2453bad92243128e237e7feb

[issue45614] traceback of exception with non-unicode __module__

2021-11-28 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +28058 pull_request: https://github.com/python/cpython/pull/29827 ___ Python tracker ___

[issue45614] traceback of exception with non-unicode __module__

2021-11-28 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +28057 pull_request: https://github.com/python/cpython/pull/29826 ___ Python tracker ___

[issue45614] traceback of exception with non-unicode __module__

2021-11-27 Thread Irit Katriel
Irit Katriel added the comment: New changeset 4dfae6f38e1720ddafcdd68043e476ecb41cb4d5 by Irit Katriel in branch 'main': bpo-45614: Fix traceback display for exceptions with invalid module name (GH-29726) https://github.com/python/cpython/commit/4dfae6f38e1720ddafcdd68043e476ecb41cb4d5 ---

[issue45614] traceback of exception with non-unicode __module__

2021-11-27 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45614] traceback of exception with non-unicode __module__

2021-11-23 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +27963 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29726 ___ Python tracker ___ ___

[issue45614] traceback of exception with non-unicode __module__

2021-11-03 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue45614] traceback of exception with non-unicode __module__

2021-10-26 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue45614] traceback of exception with non-unicode __module__

2021-10-26 Thread Irit Katriel
Irit Katriel added the comment: In C it is missing the '.' between and the qualname. In python it raises an exception when trying to + the module field with a string. -- ___ Python tracker

[issue45614] traceback of exception with non-unicode __module__

2021-10-26 Thread Irit Katriel
New submission from Irit Katriel : This test currently fails for both C and python tracebacks: def test_exception_modulename_not_unicode(self): class X(Exception): def __str__(self): return "I am X" X.__module__ = 42 err = self.get_repor