[pypy-commit] pypy py3k: disable PyInt_ API tests

pjenvey noreply at buildbot.pypy.org
Fri Apr 5 03:10:22 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63039:6cb7774fb7c5
Date: 2013-04-04 18:08 -0700
http://bitbucket.org/pypy/pypy/changeset/6cb7774fb7c5/

Log:	disable PyInt_ API tests

diff --git a/pypy/module/cpyext/test/test_intobject.py b/pypy/module/cpyext/test/test_intobject.py
--- a/pypy/module/cpyext/test/test_intobject.py
+++ b/pypy/module/cpyext/test/test_intobject.py
@@ -1,7 +1,10 @@
+import py.test
 from pypy.module.cpyext.test.test_api import BaseApiTest
 from pypy.module.cpyext.test.test_cpyext import AppTestCpythonExtensionBase
 import sys
 
+py.test.skip("PyInt_ APIs were removed from py3k")
+
 class TestIntObject(BaseApiTest):
     def test_intobject(self, space, api):
         assert api.PyInt_Check(space.wrap(3))


More information about the pypy-commit mailing list