Change by nahco314 :
--
pull_requests: +27098
pull_request: https://github.com/python/cpython/pull/28753
___
Python tracker
<https://bugs.python.org/issue45
Change by nahco314 :
--
keywords: +patch
pull_requests: +26736
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/28325
___
Python tracker
<https://bugs.python.org/issu
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 __trac