summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:30:26 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:30:26 (GMT)
commitb8de9fab302263b6950b1d1e978b253e73682e06 (patch)
tree2ab6f94b12ad053ec021b8117b9a484319a0da01 /Modules
parentb35af8c91c96b4dd2df3deccb7cff950601b5fd8 (diff)
downloadcpython-b8de9fab302263b6950b1d1e978b253e73682e06.zip
cpython-b8de9fab302263b6950b1d1e978b253e73682e06.tar.gz
cpython-b8de9fab302263b6950b1d1e978b253e73682e06.tar.bz2
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')
-rw-r--r--Modules/pwdmodule.c6
-rw-r--r--Modules/threadmodule.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c
index ae358e0..6729c84 100644
--- a/Modules/pwdmodule.c
+++ b/Modules/pwdmodule.c
@@ -98,7 +98,7 @@ PyDoc_STRVAR(pwd_getpwuid__doc__,
"getpwuid(uid) -> (pw_name,pw_passwd,pw_uid,\n\
pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Return the password database entry for the given numeric user ID.\n\
-See pwd.__doc__ for more on password database entries.");
+See help(pwd) for more on password database entries.");
static PyObject *
pwd_getpwuid(PyObject *self, PyObject *args)
@@ -119,7 +119,7 @@ PyDoc_STRVAR(pwd_getpwnam__doc__,
"getpwnam(name) -> (pw_name,pw_passwd,pw_uid,\n\
pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Return the password database entry for the given user name.\n\
-See pwd.__doc__ for more on password database entries.");
+See help(pwd) for more on password database entries.");
static PyObject *
pwd_getpwnam(PyObject *self, PyObject *args)
@@ -141,7 +141,7 @@ PyDoc_STRVAR(pwd_getpwall__doc__,
"getpwall() -> list_of_entries\n\
Return a list of all available password database entries, \
in arbitrary order.\n\
-See pwd.__doc__ for more on password database entries.");
+See help(pwd) for more on password database entries.");
static PyObject *
pwd_getpwall(PyObject *self)
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c
index 3db6e61..a89158e 100644
--- a/Modules/threadmodule.c
+++ b/Modules/threadmodule.c
@@ -756,7 +756,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)