diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-08-13 23:51:52 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-08-13 23:51:52 (GMT) |
commit | 85674936c748379fb57c197ac01cdb1dde0431a5 (patch) | |
tree | 2cbedf7b6bd4d32c37af7b0bac3d23b1ac1213a0 /Lib/test/pickletester.py | |
parent | e58bffb8ae6c48670a3953e59a25b14a9477ff7b (diff) | |
download | cpython-85674936c748379fb57c197ac01cdb1dde0431a5.zip cpython-85674936c748379fb57c197ac01cdb1dde0431a5.tar.gz cpython-85674936c748379fb57c197ac01cdb1dde0431a5.tar.bz2 |
Monotonic, not monotonous
Diffstat (limited to 'Lib/test/pickletester.py')
-rw-r--r-- | Lib/test/pickletester.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index ad15fe8..e862d07 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -1122,7 +1122,7 @@ class AbstractPickleTests(unittest.TestCase): # Test compacity of int representation (see issue #12744) for proto in protocols: sizes = [len(self.dumps(2**n, proto)) for n in range(70)] - # the size function is monotonous + # the size function is monotonic self.assertEqual(sorted(sizes), sizes) if proto >= 2: self.assertLessEqual(sizes[-1], 14) |