diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-16 20:17:07 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-16 20:17:07 (GMT) |
commit | 977a684c94c369a858f49ce1447308e373ca4ced (patch) | |
tree | ff6779e1c4a2dfcf13edf2c7a2858fc0b27473e7 /Modules/_threadmodule.c | |
parent | 4a339ad628e34578a0daea676b56fff919da6bb3 (diff) | |
download | cpython-977a684c94c369a858f49ce1447308e373ca4ced.zip cpython-977a684c94c369a858f49ce1447308e373ca4ced.tar.gz cpython-977a684c94c369a858f49ce1447308e373ca4ced.tar.bz2 |
Issue #8983: Corrected docstrings.
Diffstat (limited to 'Modules/_threadmodule.c')
-rw-r--r-- | Modules/_threadmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c index 3037967..a7fb017 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -1078,7 +1078,7 @@ PyDoc_STRVAR(allocate_doc, "allocate_lock() -> lock object\n\ (allocate() is an obsolete synonym)\n\ \n\ -Create a new lock object. See LockType.__doc__ for information about locks."); +Create a new lock object. See help(LockType) for information about locks."); static PyObject * thread_get_ident(PyObject *self) |