diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-03 11:50:46 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-03 11:50:46 +0000 |
commit | 90193c01b93e7021634d35b8668fc2ff84a949ff (patch) | |
tree | 2cbbd54c5e836faaf01396a8d263e1b74b3fc6e2 /Python/sysmodule.c | |
parent | 5de5914e07a95cf41507f35acafdaca652e7c199 (diff) | |
download | cpython-git-90193c01b93e7021634d35b8668fc2ff84a949ff.tar.gz |
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 721f77da9a..4a46a728e9 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -126,7 +126,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 __builtin__.\n" +"Print an object to sys.stdout and also save it in __builtin__._\n" ); static PyObject * |