diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-15 00:28:36 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-15 00:28:36 +0000 |
commit | 4a9a823c46d6b37e8a14d48cd16de3c2ae78bdd6 (patch) | |
tree | 689d354cc55f30372a2889a7a14f61c9ce5c73c7 /Python | |
parent | 701b3a5e87395e889a710757a7b3c967b0d8d40b (diff) | |
download | cpython-4a9a823c46d6b37e8a14d48cd16de3c2ae78bdd6.tar.gz |
correct docstring
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 e45d2a3846..896b2cd85f 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\ |