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 c09c84a commit f14e0e8Copy full SHA for f14e0e8
graalpython/lib-graalpython/sys.py
@@ -55,7 +55,7 @@ def make_implementation_info():
55
hexversion = ((version_info.major << 24) |
56
(version_info.minor << 16) |
57
(version_info.micro << 8) |
58
- (0 << 4) |
+ (0xa << 4) | # 0xA is alpha, 0xB is beta, 0xC is rc, 0xF is final
59
(version_info.serial << 0))
60
61
0 commit comments