[pypy-commit] pypy reflex-support: enable test that now works thanks to default argument support

wlav noreply at buildbot.pypy.org
Sat Feb 11 01:37:58 CET 2012


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
Branch: reflex-support
Changeset: r52364:b258b4215935
Date: 2012-02-10 11:41 -0800
http://bitbucket.org/pypy/pypy/changeset/b258b4215935/

Log:	enable test that now works thanks to default argument support

diff --git a/pypy/module/cppyy/test/test_fragile.py b/pypy/module/cppyy/test/test_fragile.py
--- a/pypy/module/cppyy/test/test_fragile.py
+++ b/pypy/module/cppyy/test/test_fragile.py
@@ -67,10 +67,8 @@
         raises(TypeError, d.overload, None)
         raises(TypeError, d.overload, None, None, None)
 
-        # TODO: the following fails in the fast path, b/c the default
-        # arguments are not properly filled
-        #d.overload('a')
-        #d.overload(1)
+        d.overload('a')
+        d.overload(1)
 
     def test04_unsupported_arguments(self):
         """Test arguments that are yet unsupported"""


More information about the pypy-commit mailing list