From 065e9a001d45749ccb34ed5fa2fd6e77edc984b9 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 3 May 2014 20:12:39 +0200 Subject: [PATCH] call signature test change to avoid version changes of python 3.2.5 (int docstrings have changed, travis has updated since) --- test/test_api/test_call_signatures.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_api/test_call_signatures.py b/test/test_api/test_call_signatures.py index 4c7cd78c..1789fb1e 100644 --- a/test/test_api/test_call_signatures.py +++ b/test/test_api/test_call_signatures.py @@ -179,7 +179,10 @@ class TestParams(TestCase): p = self.params('''int(''') # int is defined as: `int(x[, base])` assert p[0].name == 'x' - assert p[1].name == 'base' + # `int` docstring has been redefined: + # http://bugs.python.org/issue14783 + # TODO have multiple call signatures for int (like in the docstr) + #assert p[1].name == 'base' p = self.params('''open(something,''') assert p[0].name in ['file', 'name']