[pypy-svn] r76862 - pypy/branch/reflex-support/pypy/module/cppyy/test

wlav at codespeak.net wlav at codespeak.net
Fri Sep 3 20:52:11 CEST 2010


Author: wlav
Date: Fri Sep  3 20:52:08 2010
New Revision: 76862

Modified:
   pypy/branch/reflex-support/pypy/module/cppyy/test/test_datatypes.py
Log:
Initial long array data member access.


Modified: pypy/branch/reflex-support/pypy/module/cppyy/test/test_datatypes.py
==============================================================================
--- pypy/branch/reflex-support/pypy/module/cppyy/test/test_datatypes.py	(original)
+++ pypy/branch/reflex-support/pypy/module/cppyy/test/test_datatypes.py	Fri Sep  3 20:52:08 2010
@@ -98,7 +98,7 @@
         # integer arrays
         import array
         a = range(self.N)
-        atypes = ['h', 'H', 'i', 'I']#, 'l', 'L' ]
+        atypes = ['h', 'H', 'i', 'I', 'l']#, 'L' ]
         for j in range(len(atypes)):#names)):
             b = array.array(atypes[j], a)
             exec 'c.m_%s_array = b' % names[j]   # buffer copies



More information about the Pypy-commit mailing list