diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-15 00:28:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-15 00:28:36 (GMT) |
commit | 06157a4d21c77525b3bb07468d21a16a09ff964e (patch) | |
tree | 798e35868adfd4c93778f3b5c53a78ce0cfeea88 /Python/sysmodule.c | |
parent | 0034ebb3ca69b18b756f4601beb6e32d2d9d7b1e (diff) | |
download | cpython-06157a4d21c77525b3bb07468d21a16a09ff964e.zip cpython-06157a4d21c77525b3bb07468d21a16a09ff964e.tar.gz cpython-06157a4d21c77525b3bb07468d21a16a09ff964e.tar.bz2 |
correct docstring
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 e45d2a3..896b2cd 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -990,7 +990,7 @@ excepthook -- called to handle any uncaught exception other than SystemExit\n\ To customize printing in an interactive session or to install a custom\n\ top-level exception handler, assign other functions to replace these.\n\ \n\ -stdin -- standard input file object; used by raw_input() and input()\n\ +stdin -- standard input file object; used by input()\n\ stdout -- standard output file object; used by print()\n\ stderr -- standard error object; used for error messages\n\ By assigning other file objects (or objects that behave like files)\n\ |