[pypy-svn] r51611 - pypy/dist/pypy/lib/app_test/ctypes
fijal at codespeak.net
fijal at codespeak.net
Mon Feb 18 21:57:40 CET 2008
Author: fijal
Date: Mon Feb 18 21:57:39 2008
New Revision: 51611
Modified:
pypy/dist/pypy/lib/app_test/ctypes/test_functions.py
Log:
This passes out of the box
Modified: pypy/dist/pypy/lib/app_test/ctypes/test_functions.py
==============================================================================
--- pypy/dist/pypy/lib/app_test/ctypes/test_functions.py (original)
+++ pypy/dist/pypy/lib/app_test/ctypes/test_functions.py Mon Feb 18 21:57:39 2008
@@ -29,7 +29,7 @@
class RECT(Structure):
_fields_ = [("left", c_int), ("top", c_int),
("right", c_int), ("bottom", c_int)]
-class TestFunctions:#(BaseCTypesTestChecker):
+class TestFunctions(BaseCTypesTestChecker):
def test_mro(self):
# in Python 2.3, this raises TypeError: MRO conflict among bases classes,
More information about the Pypy-commit
mailing list