Skip to content

Commit 0ea7f2e

Browse files
committed
Add magic numbers for Python 3.13
1 parent 16f2893 commit 0ea7f2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

marshalparser/magic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ 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-
# This range has to be adjusted when the final release is out
22+
# These ranges have to be adjusted when the final releases are out
2323
(inclusive_range(3500, 3549), (3, 12)),
24+
(inclusive_range(3550, 3599), (3, 13)),
2425
)
2526

2627

0 commit comments

Comments
 (0)