diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-01 23:26:05 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-01 23:26:05 (GMT) |
commit | a7c650934d8e3b62d7e0b2aeaf30fd486922d484 (patch) | |
tree | 8851653af9852a6a58fa02520e79ddb8f3bcde1c /Python | |
parent | 86c7d2f2207f3a6f3814c98688311afa68bf5d4a (diff) | |
download | cpython-a7c650934d8e3b62d7e0b2aeaf30fd486922d484.zip cpython-a7c650934d8e3b62d7e0b2aeaf30fd486922d484.tar.gz cpython-a7c650934d8e3b62d7e0b2aeaf30fd486922d484.tar.bz2 |
lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were
already correct, so not changed here.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/import.c b/Python/import.c index aa16b19..aa0b5c2 100644 --- a/Python/import.c +++ b/Python/import.c @@ -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."); PyDoc_STRVAR(doc_lock_held, -"lock_held() -> 0 or 1\n\ -Return 1 if the import lock is currently held.\n\ -On platforms without threads, return 0."); +"lock_held() -> boolean\n\ +Return True if the import lock is currently held, else False.\n\ +On platforms without threads, return False."); PyDoc_STRVAR(doc_acquire_lock, "acquire_lock() -> None\n\ |