We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_compile.py
1 parent 73218f4 commit 9f1429dCopy full SHA for 9f1429d
Lib/test/test_compile.py
@@ -250,8 +250,8 @@ def test_32_63_bit_values(self):
250
d = -281474976710656 # 1 << 48
251
e = +4611686018427387904 # 1 << 62
252
f = -4611686018427387904 # 1 << 62
253
- g = +9223372036854775807 # 1 << 63 - 1
254
- h = -9223372036854775807 # 1 << 63 - 1
+ g = +9223372036854775807 # (1 << 63) - 1
+ h = -9223372036854775807 # (1 << 63) - 1
255
256
for variable in self.test_32_63_bit_values.__code__.co_consts:
257
if variable is not None:
0 commit comments