[pypy-commit] pypy py3.5: hg merge default

mjacob pypy.commits at gmail.com
Thu Mar 2 04:28:36 EST 2017


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.5
Changeset: r90453:5e7e5a30cf5e
Date: 2017-03-02 10:26 +0100
http://bitbucket.org/pypy/pypy/changeset/5e7e5a30cf5e/

Log:	hg merge default

diff --git a/lib-python/2.7/sysconfig.py b/lib-python/2.7/sysconfig.py
--- a/lib-python/2.7/sysconfig.py
+++ b/lib-python/2.7/sysconfig.py
@@ -369,11 +369,8 @@
 
 def _init_posix(vars):
     """Initialize the module as appropriate for POSIX systems."""
-    # in cPython, _sysconfigdata is generated at build time, see _generate_posix_vars()
-    # in PyPy no such module exists
-    #from _sysconfigdata import build_time_vars
-    #vars.update(build_time_vars)
-    return
+    from _sysconfigdata import build_time_vars
+    vars.update(build_time_vars)
 
 def _init_non_posix(vars):
     """Initialize the module as appropriate for NT"""


More information about the pypy-commit mailing list