We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2979bc3 commit 683958fCopy full SHA for 683958f
marshalparser/magic.py
@@ -9,7 +9,7 @@ def inclusive_range(f: int, t: int) -> range:
9
10
11
# Based on CPython source code
12
-# Lib/importlib/_bootstrap_external.py
+# Include/internal/pycore_magic_number.h
13
MAGIC_NUMBERS_RANGES = (
14
(inclusive_range(3360, 3361), (3, 6)),
15
(inclusive_range(3370, 3379), (3, 6)),
@@ -20,10 +20,10 @@ def inclusive_range(f: int, t: int) -> range:
20
(inclusive_range(3430, 3439), (3, 10)),
21
(inclusive_range(3450, 3495), (3, 11)),
22
(inclusive_range(3500, 3531), (3, 12)),
23
+ (inclusive_range(3550, 3571), (3, 13)),
24
# These ranges have to be adjusted when the final releases are out
- (inclusive_range(3550, 3599), (3, 13)),
25
- (inclusive_range(3600, 3699), (3, 14)),
26
- (inclusive_range(3700, 3799), (3, 15)),
+ (inclusive_range(3600, 3649), (3, 14)),
+ (inclusive_range(3650, 3699), (3, 15)),
27
)
28
29
0 commit comments