diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-03-02 22:07:40 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-03-02 22:07:40 +0000 |
commit | 2073074a2a9ceea8e35eb44949247e110a0cec46 (patch) | |
tree | a3cb040dc04a033c5503cae2f9676d29d11afa58 /Python | |
parent | e4ec11241b3ca6e66b6fc0693de572a86b047ffd (diff) | |
download | cpython-2073074a2a9ceea8e35eb44949247e110a0cec46.tar.gz |
Fix minor docstring typo.
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 43c010b852..3219b1c421 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -125,7 +125,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 * |