[pypy-commit] pypy py3k: Add sys.abiflags. The empty string is good enough for now.

amauryfa noreply at buildbot.pypy.org
Tue Oct 18 08:28:24 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r48182:0ea3cb4c5772
Date: 2011-10-18 01:21 +0200
http://bitbucket.org/pypy/pypy/changeset/0ea3cb4c5772/

Log:	Add sys.abiflags. The empty string is good enough for now.

diff --git a/pypy/module/sys/__init__.py b/pypy/module/sys/__init__.py
--- a/pypy/module/sys/__init__.py
+++ b/pypy/module/sys/__init__.py
@@ -42,6 +42,7 @@
         'argv'                  : 'state.get(space).w_argv',
         'py3kwarning'           : 'space.w_False',
         'warnoptions'           : 'state.get(space).w_warnoptions', 
+        'abiflags'              : 'space.wrap("")',
         'builtin_module_names'  : 'space.w_None',
         'pypy_getudir'          : 'state.pypy_getudir',    # not translated
         'pypy_initial_path'     : 'state.pypy_initial_path',


More information about the pypy-commit mailing list