Kaydet (Commit) c6ef503b authored tarafından Ned Deily's avatar Ned Deily

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

Patch by Chi Hsuan Yen.
üst 55c9239a
...@@ -336,9 +336,7 @@ def setquit(): ...@@ -336,9 +336,7 @@ def setquit():
The repr of each object contains a hint at how it works. The repr of each object contains a hint at how it works.
""" """
if os.sep == ':': if os.sep == '\\':
eof = 'Cmd-Q'
elif os.sep == '\\':
eof = 'Ctrl-Z plus Return' eof = 'Ctrl-Z plus Return'
else: else:
eof = 'Ctrl-D (i.e. EOF)' eof = 'Ctrl-D (i.e. EOF)'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment