mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Be consistent in the spelling of thread-safe(ty).
This commit is contained in:
parent
6dbed2e8b3
commit
f285bcca28
5 changed files with 7 additions and 7 deletions
|
@ -437,7 +437,7 @@ Thread State and the Global Interpreter Lock
|
|||
single: interpreter lock
|
||||
single: lock, interpreter
|
||||
|
||||
The Python interpreter is not fully thread safe. In order to support
|
||||
The Python interpreter is not fully thread-safe. In order to support
|
||||
multi-threaded Python programs, there's a global lock, called the :dfn:`global
|
||||
interpreter lock` or :dfn:`GIL`, that must be held by the current thread before
|
||||
it can safely access Python objects. Without the lock, even the simplest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue