[Python-checkins] cpython (merge 3.5 -> 3.6): typo fix, extra '.' on MacOS :)

gregory.p.smith python-checkins at python.org
Sun Jan 22 23:55:30 EST 2017


https://hg.python.org/cpython/rev/3589076b5795
changeset:   106274:3589076b5795
branch:      3.6
parent:      106271:ba272f947c40
parent:      106273:2afdb08b3fb4
user:        Gregory P. Smith <greg at krypto.org>
date:        Sun Jan 22 20:55:02 2017 -0800
summary:
  typo fix, extra '.' on MacOS :)

files:
  Lib/test/test_subprocess.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2502,7 +2502,7 @@
 
     _libc_file_extensions = {
       'Linux': 'so.6',
-      'Darwin': '.dylib',
+      'Darwin': 'dylib',
     }
     @unittest.skipIf(platform.uname()[0] not in _libc_file_extensions,
                      'Test requires a libc this code can load with ctypes.')

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


More information about the Python-checkins mailing list