Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
49c68761
Commit
49c68761
authored
Dec 01, 2013
by
Alexandre Vassalotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19754: Make pickletools.optimize respect the frame size target.
parent
f5077b95
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
14 deletions
+2
-14
Lib/pickletools.py
Lib/pickletools.py
+1
-0
Lib/test/pickletester.py
Lib/test/pickletester.py
+1
-12
Lib/test/test_pickletools.py
Lib/test/test_pickletools.py
+0
-2
No files found.
Lib/pickletools.py
View file @
49c68761
...
...
@@ -2313,6 +2313,7 @@ def optimize(p):
buf
.
start_framing
()
for
start
,
stop
,
putid
in
opcodes
:
if
putid
in
gets
:
#buf.commit_frame()
buf
.
write
(
p
[
start
:
stop
])
if
proto
>=
4
:
buf
.
end_framing
()
...
...
Lib/test/pickletester.py
View file @
49c68761
...
...
@@ -1343,12 +1343,6 @@ class AbstractPickleTests(unittest.TestCase):
pickled
=
self
.
dumps
(
obj
,
proto
)
unpickled
=
self
.
loads
(
pickled
)
self
.
assertEqual
(
obj
,
unpickled
)
# Test the framing heuristic is sane,
# assuming a given frame size target.
if
self
.
optimized
:
# These assumptions are currently invalid for optimized
# pickles (see e.g. issue19754).
continue
bytes_per_frame
=
(
len
(
pickled
)
/
count_opcode
(
pickle
.
FRAME
,
pickled
))
self
.
assertGreater
(
bytes_per_frame
,
...
...
@@ -1365,12 +1359,7 @@ class AbstractPickleTests(unittest.TestCase):
unpickled
=
self
.
loads
(
pickled
)
self
.
assertEqual
(
obj
,
unpickled
)
n_frames
=
count_opcode
(
pickle
.
FRAME
,
pickled
)
if
self
.
optimized
:
# At least one frame was emitted (see issue19754).
self
.
assertGreaterEqual
(
n_frames
,
1
)
else
:
# At least one frame was emitted per large bytes object.
self
.
assertGreaterEqual
(
n_frames
,
len
(
obj
))
self
.
assertGreaterEqual
(
n_frames
,
len
(
obj
))
def
test_optional_frames
(
self
):
if
pickle
.
HIGHEST_PROTOCOL
<
4
:
...
...
Lib/test/test_pickletools.py
View file @
49c68761
...
...
@@ -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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment