diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 16:27:46 -0800 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 16:27:46 -0800 |
commit | 28d271ef6b0eb37e27b5b3234ba146922b11d89f (patch) | |
tree | 393534e42e54081b2b542398e6d3cdcc368688a5 /Lib/test/test_pickletools.py | |
parent | 53dd8167ff548233373a75c4884ae5490b91f010 (diff) | |
download | cpython-git-28d271ef6b0eb37e27b5b3234ba146922b11d89f.tar.gz |
Issue #19754: Make pickletools.optimize respect the frame size target.
Diffstat (limited to 'Lib/test/test_pickletools.py')
-rw-r--r-- | Lib/test/test_pickletools.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_pickletools.py b/Lib/test/test_pickletools.py index 029b5b1d51..d37ac263c4 100644 --- a/Lib/test/test_pickletools.py +++ b/Lib/test/test_pickletools.py @@ -6,8 +6,6 @@ from test.pickletester import AbstractPickleModuleTests class OptimizedPickleTests(AbstractPickleTests, AbstractPickleModuleTests): - optimized = True - def dumps(self, arg, proto=None): return pickletools.optimize(pickle.dumps(arg, proto)) |