Skip to content

Commit b5298d8

Browse files
committed
gh-119132: Remove "experimental" tag from the CPython free-threading build
1 parent 2bd3895 commit b5298d8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ def _sys_version(sys_version=None):
11441144
# CPython
11451145
cpython_sys_version_parser = re.compile(
11461146
r'([\w.+]+)\s*' # "version<space>"
1147-
r'(?:experimental free-threading build\s+)?' # "free-threading-build<space>"
1147+
r'(?:free-threading build\s+)?' # "free-threading-build<space>"
11481148
r'\(#?([^,]+)' # "(#buildno"
11491149
r'(?:,\s*([\w ]*)' # ", builddate"
11501150
r'(?:,\s*([\w :]*))?)?\)\s*' # ", buildtime)<space>"

Python/getversion.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void _Py_InitVersion(void)
1515
}
1616
initialized = 1;
1717
#ifdef Py_GIL_DISABLED
18-
const char *buildinfo_format = "%.80s experimental free-threading build (%.80s) %.80s";
18+
const char *buildinfo_format = "%.80s free-threading build (%.80s) %.80s";
1919
#else
2020
const char *buildinfo_format = "%.80s (%.80s) %.80s";
2121
#endif

0 commit comments

Comments
 (0)