[pypy-svn] r77552 - pypy/branch/fast-forward/pypy/module/_rawffi

afa at codespeak.net afa at codespeak.net
Sun Oct 3 22:42:56 CEST 2010


Author: afa
Date: Sun Oct  3 22:42:55 2010
New Revision: 77552

Modified:
   pypy/branch/fast-forward/pypy/module/_rawffi/interp_rawffi.py
Log:
Typecode '?' is now used for the Bool type.
Change the default to '\0'


Modified: pypy/branch/fast-forward/pypy/module/_rawffi/interp_rawffi.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/_rawffi/interp_rawffi.py	(original)
+++ pypy/branch/fast-forward/pypy/module/_rawffi/interp_rawffi.py	Sun Oct  3 22:42:55 2010
@@ -243,7 +243,7 @@
     _array_shapes = None
     size = 0
     alignment = 0
-    itemcode = '?'
+    itemcode = '\0'
 
     def allocate(self, space, length, autofree=False):
         raise NotImplementedError



More information about the Pypy-commit mailing list