Author: Wim Lavrijsen <[email protected]>
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"""
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit