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 d87ac8f commit 1321433Copy full SHA for 1321433
xdis/magics.py
@@ -46,6 +46,7 @@
46
12641, # RustPython 3.12
47
12897, # RustPython 3.12
48
13413, # RustPython 3.13
49
+ 24881, # RustPython 3.13
50
)
51
52
@@ -628,7 +629,8 @@ def __by_version(magic_versions: Dict[bytes, str]) -> dict:
628
629
630
add_magic_from_int(12641, "3.12.0a.rust") # RustPython 3.12.0
631
add_magic_from_int(12897, "3.13.0b.rust") # RustPython 3.12.0
-add_magic_from_int(13413, "3.13.0.rust") # RustPython 3.13.0
632
+add_magic_from_int(13413, "3.13.0a.rust") # RustPython 3.13.0
633
+add_magic_from_int(24881, "3.13.0b.rust") # RustPython 3.13.0
634
635
# Graal uses JVM bytecode, not Python bytecode
636
add_magic_from_int(21150, "3.8.5Graal")
0 commit comments