Skip to content

Commit

Permalink
Document Ctrl-D to exit, even on Windows, due to JLine 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbaker committed Jan 12, 2016
1 parent 1f0ff60 commit 3a42279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def setquit():
if os.sep == ':':
eof = 'Cmd-Q'
elif os.sep == '\\':
eof = 'Ctrl-Z plus Return'
eof = 'Ctrl-D (i.e. EOF)' # maybe also mention Ctrl-Z if we can support for Windows
else:
eof = 'Ctrl-D (i.e. EOF)'

Expand Down

0 comments on commit 3a42279

Please sign in to comment.