[Python-checkins] cpython (merge 3.6 -> default): Issue #28323: Merge from 3.6

ned.deily python-checkins at python.org
Sat Oct 1 21:34:02 EDT 2016


https://hg.python.org/cpython/rev/2c7034d59c7b
changeset:   104219:2c7034d59c7b
parent:      104217:ee71de4287c5
parent:      104218:2d8d9abb3bf8
user:        Ned Deily <nad at python.org>
date:        Sat Oct 01 21:21:44 2016 -0400
summary:
  Issue #28323: Merge from 3.6

files:
  Lib/site.py |  4 +---
  1 files changed, 1 insertions(+), 3 deletions(-)


diff --git a/Lib/site.py b/Lib/site.py
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -336,9 +336,7 @@
     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)'

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list