Skip to content

Commit 39b9b56

Browse files
committed
Fix magic number range for Python 3.11
1 parent 7372964 commit 39b9b56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

marshalparser/magic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def inclusive_range(f: int, t: int) -> range:
1818
(inclusive_range(3410, 3413), (3, 8)),
1919
(inclusive_range(3420, 3425), (3, 9)),
2020
(inclusive_range(3430, 3439), (3, 10)),
21-
(inclusive_range(3450, 3494), (3, 11)),
21+
(inclusive_range(3450, 3495), (3, 11)),
2222
# This range has to be adjusted when the final release is out
2323
(inclusive_range(3500, 3549), (3, 12)),
2424
)

0 commit comments

Comments
 (0)