diff options
author | Barry Warsaw <barry@python.org> | 2010-03-03 12:31:33 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-03-03 12:31:33 (GMT) |
commit | 1545d80e07861ca8de2d138a64a146264d42cd58 (patch) | |
tree | 5ab74e590aeb23bc10f3c53daf7c968b424ec641 /Python | |
parent | a16a992dce1e251501b3523599ad4f6e539fa594 (diff) | |
download | cpython-1545d80e07861ca8de2d138a64a146264d42cd58.zip cpython-1545d80e07861ca8de2d138a64a146264d42cd58.tar.gz cpython-1545d80e07861ca8de2d138a64a146264d42cd58.tar.bz2 |
Revert r78621. This was not a critical fix and we're in rc mode.
Diffstat (limited to 'Python')
-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 4a46a72..721f77d 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 * |