diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2007-12-21 07:31:17 +0000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2007-12-21 07:31:17 +0000 |
commit | e78370050b4070cda3124f5fdcb0304dca10acd8 (patch) | |
tree | 9ad5a6d23ca940e42ff7d9bca02a8281d1936f60 /Python/sysmodule.c | |
parent | 8445104d7d8ed460061317cd39232e56f9217c29 (diff) | |
download | cpython-git-e78370050b4070cda3124f5fdcb0304dca10acd8.tar.gz |
Fix thoroughly misleading comment
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 ea4d3cc80a..d6befa41a2 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1025,7 +1025,7 @@ _PySys_Init(void) } } - /* stdin/stdout/stderr are now set by site.py. */ + /* stdin/stdout/stderr are now set by pythonrun.c */ PyDict_SetItemString(sysdict, "__displayhook__", PyDict_GetItemString(sysdict, "displayhook")); |