diff options
author | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 17:16:26 (GMT) |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 17:16:26 (GMT) |
commit | a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3 (patch) | |
tree | 5fcf388089b00a6e1f72bbd2f295385080aa61b1 /Lib | |
parent | 313f85f0ca1adb198e1cf7c012f7f0d1692339ae (diff) | |
parent | fe17b2bc77851be1724f9ce2ea07112a06f413ab (diff) | |
download | cpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.zip cpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.tar.gz cpython-a3eabb6f8eb0c8f9e5c3d2ecd6f60a96567624b3.tar.bz2 |
Merge
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_decimal.py | 2 |
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): |