summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-02-20 23:32:36 (GMT)
committerGeorg Brandl <georg@python.org>2012-02-20 23:32:36 (GMT)
commit178e5ea305848015d514f4038118777374e44c87 (patch)
tree145d58861e959f2bf627e993beb7964d389f7681 /Lib
parent95a97b7c0cd52fafb9defaa1737d432a0eb1c95f (diff)
downloadcpython-178e5ea305848015d514f4038118777374e44c87.zip
cpython-178e5ea305848015d514f4038118777374e44c87.tar.gz
cpython-178e5ea305848015d514f4038118777374e44c87.tar.bz2
Disable an inspect test: it depends on dict ordering which parameter is reported as duplicate.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_inspect.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index f5318e1..4b7ee4e 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -810,7 +810,8 @@ class TestGetcallargsFunctions(unittest.TestCase):
self.assertEqualException(f, '2, 3, 4')
self.assertEqualException(f, '1, 2, 3, a=1')
self.assertEqualException(f, '2, 3, 4, c=5')
- self.assertEqualException(f, '2, 3, 4, a=1, c=5')
+ # XXX: success of this one depends on dict order
+ ## self.assertEqualException(f, '2, 3, 4, a=1, c=5')
# f got an unexpected keyword argument
self.assertEqualException(f, 'c=2')
self.assertEqualException(f, '2, c=3')