[pypy-commit] pypy ffi-backend: Add the __version__ attribute.

arigo noreply at buildbot.pypy.org
Sat Aug 4 18:49:47 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: ffi-backend
Changeset: r56573:8afd7bd80899
Date: 2012-08-04 16:21 +0200
http://bitbucket.org/pypy/pypy/changeset/8afd7bd80899/

Log:	Add the __version__ attribute.

diff --git a/pypy/module/_cffi_backend/__init__.py b/pypy/module/_cffi_backend/__init__.py
--- a/pypy/module/_cffi_backend/__init__.py
+++ b/pypy/module/_cffi_backend/__init__.py
@@ -5,6 +5,8 @@
     appleveldefs = {
         }
     interpleveldefs = {
+        '__version__': 'space.wrap("0.3")',
+
         'nonstandard_integer_types': 'misc.nonstandard_integer_types',
 
         'load_library': 'libraryobj.load_library',


More information about the pypy-commit mailing list