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 298ee69 commit ace1814Copy full SHA for ace1814
graalpython/lib-graalpython/sys.py
@@ -52,6 +52,11 @@ def make_implementation_info():
52
del make_implementation_info
53
del __gmultiarch
54
version_info = implementation.version
55
+hexversion = ((version_info.major << 24) |
56
+ (version_info.minor << 16) |
57
+ (version_info.micro << 8) |
58
+ (0 << 4) |
59
+ (version_info.serial << 0))
60
61
62
def make_flags_class():
0 commit comments