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
5bdae3bb
Commit
5bdae3bb
authored
Jul 02, 2011
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #12291: Fixed bug which was found when doing multiple loads from one stream.
parent
a4a04069
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
183 additions
and
61 deletions
+183
-61
Lib/importlib/test/source/test_file_loader.py
Lib/importlib/test/source/test_file_loader.py
+1
-1
Lib/test/test_marshal.py
Lib/test/test_marshal.py
+24
-0
Misc/NEWS
Misc/NEWS
+3
-0
Python/marshal.c
Python/marshal.c
+155
-60
No files found.
Lib/importlib/test/source/test_file_loader.py
View file @
5bdae3bb
...
...
@@ -214,7 +214,7 @@ class BadBytecodeTest(unittest.TestCase):
lambda
bc
:
bc
[:
8
]
+
b'<test>'
,
del_source
=
del_source
)
file_path
=
mapping
[
'_temp'
]
if
not
del_source
else
bytecode_path
with
self
.
assertRaises
(
Value
Error
):
with
self
.
assertRaises
(
EOF
Error
):
self
.
import_
(
file_path
,
'_temp'
)
def
_test_bad_magic
(
self
,
test
,
*
,
del_source
=
False
):
...
...
Lib/test/test_marshal.py
View file @
5bdae3bb
...
...
@@ -211,6 +211,30 @@ class BugsTestCase(unittest.TestCase):
invalid_string
=
b'l
\
x02
\
x00
\
x00
\
x00
\
x00
\
x00
\
x00
\
x00
'
self
.
assertRaises
(
ValueError
,
marshal
.
loads
,
invalid_string
)
def
test_multiple_dumps_and_loads
(
self
):
# Issue 12291: marshal.load() should be callable multiple times
# with interleaved data written by non-marshal code
# Adapted from a patch by Engelbert Gruber.
data
=
(
1
,
'abc'
,
b'def'
,
1.0
,
(
2
,
'a'
,
[
'b'
,
b'c'
]))
for
interleaved
in
(
b''
,
b'0123'
):
ilen
=
len
(
interleaved
)
positions
=
[]
try
:
with
open
(
support
.
TESTFN
,
'wb'
)
as
f
:
for
d
in
data
:
marshal
.
dump
(
d
,
f
)
if
ilen
:
f
.
write
(
interleaved
)
positions
.
append
(
f
.
tell
())
with
open
(
support
.
TESTFN
,
'rb'
)
as
f
:
for
i
,
d
in
enumerate
(
data
):
self
.
assertEqual
(
d
,
marshal
.
load
(
f
))
if
ilen
:
f
.
read
(
ilen
)
self
.
assertEqual
(
positions
[
i
],
f
.
tell
())
finally
:
support
.
unlink
(
support
.
TESTFN
)
def
test_main
():
support
.
run_unittest
(
IntTestCase
,
...
...
Misc/NEWS
View file @
5bdae3bb
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.1 release candidate 2?
Core and Builtins
-----------------
- Issue #12291: You can now load multiple marshalled objects from a stream,
with other data interleaved between marshalled objects.
- Issue #12084: os.stat on Windows now works properly with relative symbolic
links when called from any directory.
...
...
Python/marshal.c
View file @
5bdae3bb
This diff is collapsed.
Click to expand it.
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