There was an error while loading. Please reload this page.
1 parent ac2e14b commit 48cc257Copy full SHA for 48cc257
1 file changed
Doc/library/sys.rst
@@ -2240,8 +2240,9 @@ always available. Unless explicitly noted otherwise, all variables are read-only
2240
2241
The name of the lock implementation:
2242
2243
- * ``"semaphore"``: a lock uses a semaphore
2244
- * ``"mutex+cond"``: a lock uses a mutex and a condition variable
+ * ``"semaphore"``: a lock uses a semaphore (Python 3.14 and older)
+ * ``"mutex+cond"``: a lock uses a mutex and a condition variable (Python 3.14 and older)
2245
+ * ``"pymutex"``: a lock uses the :c:type:`PyMutex` implementation (Python 3.15 and newer)
2246
* ``None`` if this information is unknown
2247
2248
.. attribute:: thread_info.version
0 commit comments