summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-03-25 17:16:26 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2012-03-25 17:16:26 (GMT)
commita3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3 (patch)
tree5fcf388089b00a6e1f72bbd2f295385080aa61b1 /Lib
parent313f85f0ca1adb198e1cf7c012f7f0d1692339ae (diff)
parentfe17b2bc77851be1724f9ce2ea07112a06f413ab (diff)
downloadcpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.zip
cpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.tar.gz
cpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.tar.bz2
Merge
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_decimal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py
index 4a352e5..694b959 100644
--- a/Lib/test/test_decimal.py
+++ b/Lib/test/test_decimal.py
@@ -3837,7 +3837,7 @@ class CheckAttributes(unittest.TestCase):
x = dir(C)
y = [s for s in dir(P) if '__' in s or not s.startswith('_')]
- self.assertEqual(set(x) - set(y), {'MallocError'})
+ self.assertEqual(set(x) - set(y), set())
def test_context_attributes(self):