Skip to content

Commit 3c922e4

Browse files
committed
Update magic number ranges and add new one for Python 3.14
1 parent 76baf14 commit 3c922e4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

marshalparser/magic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ def inclusive_range(f: int, t: int) -> range:
1919
(inclusive_range(3420, 3425), (3, 9)),
2020
(inclusive_range(3430, 3439), (3, 10)),
2121
(inclusive_range(3450, 3495), (3, 11)),
22+
(inclusive_range(3500, 3531), (3, 12)),
2223
# These ranges have to be adjusted when the final releases are out
23-
(inclusive_range(3500, 3549), (3, 12)),
2424
(inclusive_range(3550, 3599), (3, 13)),
25+
(inclusive_range(3600, 3649), (3, 14)),
2526
)
2627

2728

0 commit comments

Comments
 (0)