https://github.com/python/cpython/commit/b4fa4c2c3ca4181acd9467fe82118e129f4fd843 commit: b4fa4c2c3ca4181acd9467fe82118e129f4fd843 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2025-03-26T17:44:47+05:30 summary:
[3.13] document that `sys._is_gil_enabled` is CPython-specific (GH-131748) (#131760) document that `sys._is_gil_enabled` is CPython-specific (GH-131748) (cherry picked from commit ac12de2e6a6f5c1da83de0412bb7d03c28fdab63) Co-authored-by: Ralf Gommers <[email protected]> files: M Doc/library/sys.rst diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 68301b74d2f8b0..c993d58378708d 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1235,6 +1235,9 @@ always available. Unless explicitly noted otherwise, all variables are read-only .. versionadded:: 3.13 + .. impl-detail:: + + It is not guaranteed to exist in all implementations of Python. .. function:: is_finalizing() _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
