Skip to content

Commit 9f1429d

Browse files
authored
Update test_compile.py from 3.14.4 (#7607)
1 parent 73218f4 commit 9f1429d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_compile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ def test_32_63_bit_values(self):
250250
d = -281474976710656 # 1 << 48
251251
e = +4611686018427387904 # 1 << 62
252252
f = -4611686018427387904 # 1 << 62
253-
g = +9223372036854775807 # 1 << 63 - 1
254-
h = -9223372036854775807 # 1 << 63 - 1
253+
g = +9223372036854775807 # (1 << 63) - 1
254+
h = -9223372036854775807 # (1 << 63) - 1
255255

256256
for variable in self.test_32_63_bit_values.__code__.co_consts:
257257
if variable is not None:

0 commit comments

Comments
 (0)