Issue #28323: Remove vestigal MacOS 9 checks from exit() and quit().

Patch by Chi Hsuan Yen.
This commit is contained in:
Ned Deily 2016-10-01 21:12:16 -04:00
parent 55c9239af6
commit c6ef503b49
1 changed files with 1 additions and 3 deletions

View File

@ -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)'