[issue45191] Error.__traceback__.tb_lineno is wrong

2021-11-23 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue45191] Error.__traceback__.tb_lineno is wrong

2021-11-23 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue45191] Error.__traceback__.tb_lineno is wrong

2021-10-06 Thread nahco314
Change by nahco314 : -- pull_requests: +27098 pull_request: https://github.com/python/cpython/pull/28753 ___ Python tracker ___ ___

[issue45191] Error.__traceback__.tb_lineno is wrong

2021-09-14 Thread nahco314
Change by nahco314 : -- keywords: +patch pull_requests: +26736 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28325 ___ Python tracker ___ ___

[issue45191] Error.__traceback__.tb_lineno is wrong

2021-09-13 Thread nahco314
New submission from nahco314 : I think that the emphasis of the errors caused by some of these equivalent expressions is wrong or inconsistent. expr1: 1 .bit_length("aaa") expr2: 1 \ .bit_length("aaa") expr3: 1 \ .bit_length(*["aaa"]) Below is the __traceback__.tb_lineno of the error g