[Python-checkins] cpython (3.5): typo fix, extra '.' :)

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


https://hg.python.org/cpython/rev/2afdb08b3fb4
changeset:   106273:2afdb08b3fb4
branch:      3.5
parent:      106268:f100619e7137
user:        Gregory P. Smith <greg at krypto.org>
date:        Sun Jan 22 20:54:42 2017 -0800
summary:
  typo fix, extra '.' :)

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
@@ -2452,7 +2452,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