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 | 5118517c16f3e077cfadb2abfbfa8029235773d2 (patch) | |
tree | 9d7e96e620a73f5cd85a5a2df72430ea98e9c333 /Python/sysmodule.c | |
parent | f6386306fb0237c1bb7a344808acf1dd5c9ec94a (diff) | |
download | cpython-git-5118517c16f3e077cfadb2abfbfa8029235773d2.tar.gz |
Fix minor docstring typo.
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 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 * |