diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-03 11:54:54 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-03 11:54:54 (GMT) |
commit | 5749e85b53618d9e8c0fa5ee2f4f796b0a4ca6e2 (patch) | |
tree | fa6e9a1cdb0a5159e2e2bc791d1a1ff1c504da2d /Python/sysmodule.c | |
parent | b2deb118f5e7e7988bfebdc207900d7230de73e6 (diff) | |
download | cpython-5749e85b53618d9e8c0fa5ee2f4f796b0a4ca6e2.zip cpython-5749e85b53618d9e8c0fa5ee2f4f796b0a4ca6e2.tar.gz cpython-5749e85b53618d9e8c0fa5ee2f4f796b0a4ca6e2.tar.bz2 |
Merged revisions 78620 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78620 | florent.xicluna | 2010-03-03 12:49:53 +0100 (mer, 03 mar 2010) | 2 lines
Revert a nonexistent docstring typo, r42805.
........
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index f1cbbba..490577d 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -107,7 +107,7 @@ sys_displayhook(PyObject *self, PyObject *o) PyDoc_STRVAR(displayhook_doc, "displayhook(object) -> None\n" "\n" -"Print an object to sys.stdout and also save it in builtins.\n" +"Print an object to sys.stdout and also save it in builtins._\n" ); static PyObject * |