Thanks to visit codestin.com Credit goes to github.com
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 10cabcb commit 87fb7f6Copy full SHA for 87fb7f6
2 files changed
Misc/NEWS
@@ -173,6 +173,8 @@ Build
173
Windows
174
-------
175
176
+- Issue #26073: Update the list of magic numbers in launcher
177
+
178
- Issue #26065: Excludes venv from library when generating embeddable
179
distro.
180
PC/launcher.c
@@ -1079,7 +1079,10 @@ static PYC_MAGIC magic_values[] = {
1079
{ 0x0bb8, 0x0c3b, L"3.0" },
1080
{ 0x0c45, 0x0c4f, L"3.1" },
1081
{ 0x0c58, 0x0c6c, L"3.2" },
1082
- { 0x0c76, 0x0c76, L"3.3" },
+ { 0x0c76, 0x0c9e, L"3.3" },
1083
+ { 0x0cb2, 0x0cee, L"3.4" },
1084
+ { 0x0cf8, 0x0d16, L"3.5" },
1085
+ { 0x0d20, 0x0d20, L"3.6" },
1086
{ 0 }
1087
};
1088
0 commit comments