[pypy-commit] pypy py3.5: Fix symlink name

rlamy pypy.commits at gmail.com
Fri Oct 14 05:55:32 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r87775:2f3aa6c59319
Date: 2016-10-14 11:54 +0200
http://bitbucket.org/pypy/pypy/changeset/2f3aa6c59319/

Log:	Fix symlink name

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -29,9 +29,9 @@
 STDLIB_VER = "3"
 
 # XXX: don't hardcode the version
-POSIX_EXE = 'pypy3.3'
+POSIX_EXE = 'pypy3.5'
 
-from pypy.tool.build_cffi_imports import (create_cffi_import_libraries, 
+from pypy.tool.build_cffi_imports import (create_cffi_import_libraries,
         MissingDependenciesError, cffi_build_scripts)
 
 def ignore_patterns(*patterns):
@@ -151,7 +151,7 @@
             # XXX users will complain that they cannot compile capi (cpyext)
             # modules for windows, also embedding pypy (i.e. in cffi)
             # will fail.
-            # Has the lib moved, was translation not 'shared', or are 
+            # Has the lib moved, was translation not 'shared', or are
             # there no exported functions in the dll so no import
             # library was created?
         if not options.no_tk:
@@ -323,7 +323,7 @@
 if __name__ == '__main__':
     import sys
     if sys.platform == 'win32':
-        # Try to avoid opeing a dialog box if one of the 
+        # Try to avoid opeing a dialog box if one of the
         # subprocesses causes a system error
         import ctypes
         winapi = ctypes.windll.kernel32


More information about the pypy-commit mailing list