diff options
author | Ned Deily <nad@python.org> | 2016-10-02 01:21:44 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-10-02 01:21:44 (GMT) |
commit | 13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3 (patch) | |
tree | 8c0576ca6f706375b8fc14543e49d083374795e5 | |
parent | c55f5733022f3d4297a7a4f18090d4129e6b9d8a (diff) | |
parent | c6ef503b4972cb02f3fb9ac700636b8882edb11a (diff) | |
download | cpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.zip cpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.tar.gz cpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.tar.bz2 |
Issue #28323: Merge from 3.6
-rw-r--r-- | Lib/site.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/site.py b/Lib/site.py index b637635..0859f28 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -336,9 +336,7 @@ def setquit(): The repr of each object contains a hint at how it works. """ - if os.sep == ':': - eof = 'Cmd-Q' - elif os.sep == '\\': + if os.sep == '\\': eof = 'Ctrl-Z plus Return' else: eof = 'Ctrl-D (i.e. EOF)' |