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 f3fc800 commit 9bc6045Copy full SHA for 9bc6045
Doc/glossary.rst
@@ -438,6 +438,12 @@ Glossary
438
division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75``
439
rounded *downward*. See :pep:`238`.
440
441
+ free threading
442
+ A threading model where multiple threads can run Python bytecode
443
+ simultaneously within the same interpreter. This is in contrast to
444
+ the :term:`global interpreter lock` which allows only one thread to
445
+ execute Python bytecode at a time. See :pep:`703`.
446
+
447
function
448
A series of statements which returns some value to a caller. It can also
449
be passed zero or more :term:`arguments <argument>` which may be used in
0 commit comments