diff options
author | Raymond Hettinger <python@rcn.com> | 2013-05-03 09:41:02 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-05-03 09:41:02 (GMT) |
commit | 4072875dcbdd60d27ec406eb3abe74f41c1be158 (patch) | |
tree | fcc7ea20ad79ddcc8d5098d77958983e581ee393 /Lib/test | |
parent | 865eaa1b53b7f87e13e07f0e96c5659edf003ab1 (diff) | |
parent | b98dcc1f5307789c3c42af701f81147e240b90ff (diff) | |
download | cpython-4072875dcbdd60d27ec406eb3abe74f41c1be158.zip cpython-4072875dcbdd60d27ec406eb3abe74f41c1be158.tar.gz cpython-4072875dcbdd60d27ec406eb3abe74f41c1be158.tar.bz2 |
merge
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_collections.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index dfad78e..8033031 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -305,6 +305,7 @@ class TestNamedTuple(unittest.TestCase): q = loads(dumps(p, protocol)) self.assertEqual(p, q) self.assertEqual(p._fields, q._fields) + self.assertNotIn(b'OrderedDict', dumps(p, protocol)) def test_copy(self): p = TestNT(x=10, y=20, z=30) |