There was an error while loading. Please reload this page.
1 parent 0e207f3 commit fe23f8eCopy full SHA for fe23f8e
6 files changed
Include/internal/pycore_magic_number.h
@@ -255,6 +255,7 @@ Known values:
255
Python 3.14a1 3601 (Fix miscompilation of private names in generic classes)
256
Python 3.14a1 3602 (Add LOAD_SPECIAL. Remove BEFORE_WITH and BEFORE_ASYNC_WITH)
257
Python 3.14a1 3603 (Remove BUILD_CONST_KEY_MAP)
258
+ Python 3.14a1 3604 (Do not duplicate test at end of while statements)
259
260
Python 3.15 will start with 3650
261
@@ -267,7 +268,7 @@ PC/launcher.c must also be updated.
267
268
269
*/
270
-#define PYC_MAGIC_NUMBER 3603
271
+#define PYC_MAGIC_NUMBER 3604
272
/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
273
(little-endian) and then appending b'\r\n'. */
274
#define PYC_MAGIC_NUMBER_TOKEN \
Lib/test/test_capi/test_opt.py
@@ -274,6 +274,7 @@ def many_vars():
z0 = z1 = z2 = z3 = z4 = z5 = z6 = z7 = z8 = z9 = 42
275
while z9 > 0:
276
z9 = z9 - 1
277
+ +z9
278
"""), ns, ns)
279
many_vars = ns["many_vars"]
280
0 commit comments