diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-16 20:26:04 +0000 |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-16 20:26:04 +0000 |
commit | 102594f7ff7794e9e4d9619447e252f188241ff0 (patch) | |
tree | e5b75e9a05036ce7950054a9b2dc51edbfb6a4bf /Modules/_threadmodule.c | |
parent | 7a9bdbc1c2214bec2133139dd8830f17e0383eed (diff) | |
download | cpython-git-102594f7ff7794e9e4d9619447e252f188241ff0.tar.gz |
Merged revisions 84106 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84106 | alexander.belopolsky | 2010-08-16 16:17:07 -0400 (Mon, 16 Aug 2010) | 1 line
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 d4a74c8afa..ad55f6d959 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -761,7 +761,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) |