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

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


https://hg.python.org/cpython/rev/8947bb9396cd
changeset:   106275:8947bb9396cd
parent:      106272:69c5b800df86
parent:      106274:3589076b5795
user:        Gregory P. Smith <greg at krypto.org>
date:        Sun Jan 22 20:55:20 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
@@ -2489,7 +2489,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