summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2016-10-02 01:21:44 (GMT)
committerNed Deily <nad@python.org>2016-10-02 01:21:44 (GMT)
commit13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3 (patch)
tree8c0576ca6f706375b8fc14543e49d083374795e5
parentc55f5733022f3d4297a7a4f18090d4129e6b9d8a (diff)
parentc6ef503b4972cb02f3fb9ac700636b8882edb11a (diff)
downloadcpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.zip
cpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.tar.gz
cpython-13cfae7c1aacbf3ffddbe30ab2b32aad34535ed3.tar.bz2
Issue #28323: Merge from 3.6
-rw-r--r--Lib/site.py4
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)'