mirror of
https://github.com/python/cpython.git
synced 2025-10-28 17:13:08 +00:00
lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were
already correct, so not changed here.
This commit is contained in:
parent
86c7d2f220
commit
a7c650934d
1 changed files with 3 additions and 3 deletions
|
|
@ -2692,9 +2692,9 @@ Create a new module. Do not enter it in sys.modules.\n\
|
||||||
The module name must include the full package name, if any.");
|
The module name must include the full package name, if any.");
|
||||||
|
|
||||||
PyDoc_STRVAR(doc_lock_held,
|
PyDoc_STRVAR(doc_lock_held,
|
||||||
"lock_held() -> 0 or 1\n\
|
"lock_held() -> boolean\n\
|
||||||
Return 1 if the import lock is currently held.\n\
|
Return True if the import lock is currently held, else False.\n\
|
||||||
On platforms without threads, return 0.");
|
On platforms without threads, return False.");
|
||||||
|
|
||||||
PyDoc_STRVAR(doc_acquire_lock,
|
PyDoc_STRVAR(doc_acquire_lock,
|
||||||
"acquire_lock() -> None\n\
|
"acquire_lock() -> None\n\
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue