Author: mattip <[email protected]>
Branch: py3k
Changeset: r73614:84934536fb78
Date: 2014-09-19 14:43 +0300
http://bitbucket.org/pypy/pypy/changeset/84934536fb78/

Log:    TODO is done on this branch

diff --git a/rpython/translator/driver.py b/rpython/translator/driver.py
--- a/rpython/translator/driver.py
+++ b/rpython/translator/driver.py
@@ -476,14 +476,7 @@
                 shutil_copy(str(soname), str(newsoname))
                 self.log.info("copied: %s" % (newsoname,))
                 if sys.platform == 'win32':
-                    # copy the import library as well
-                    libname = soname.new(ext='lib')
-                    newlibname = newexename.new(basename=soname.basename)
-                    shutil.copyfile(str(libname), 
str(newlibname.new(ext='lib')))
-                    self.log.info("copied: %s" % (newlibname,))
-                    # XXX TODO : replace the nonsense above with
-                    # ext_to_copy = ['lib', 'pdb']
-                    ext_to_copy = ['pdb',]
+                    ext_to_copy = ['lib', 'pdb']
                     for ext in ext_to_copy:
                         name = soname.new(ext=ext)
                         newname = newexename.new(basename=soname.basename)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to