[pypy-commit] pypy py3.5: Port of c1c8d16890dd

arigo pypy.commits at gmail.com
Wed Dec 20 01:45:50 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r93505:fd74b9439261
Date: 2017-12-20 07:45 +0100
http://bitbucket.org/pypy/pypy/changeset/fd74b9439261/

Log:	Port of c1c8d16890dd

diff --git a/lib-python/3/subprocess.py b/lib-python/3/subprocess.py
--- a/lib-python/3/subprocess.py
+++ b/lib-python/3/subprocess.py
@@ -1560,7 +1560,7 @@
                   'copyfile' in caller.f_globals):
         dest_dir = sys.pypy_resolvedirof(target_executable)
         src_dir = sys.pypy_resolvedirof(sys.executable)
-        for libname in ['libpypy3-c.so', 'libpypy3-c.dylib']:
+        for libname in ['libpypy3-c.so', 'libpypy3-c.dylib', 'libpypy3-c.dll']:
             dest_library = os.path.join(dest_dir, libname)
             src_library = os.path.join(src_dir, libname)
             if os.path.exists(src_library):


More information about the pypy-commit mailing list