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
81772f1e
Commit
81772f1e
authored
Nov 29, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Trying to fix test_xpickle with python 2.4 and 2.5.
parent
3c8ef8f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/test/pickletester.py
Lib/test/pickletester.py
+2
-2
No files found.
Lib/test/pickletester.py
View file @
81772f1e
...
@@ -723,8 +723,8 @@ class AbstractUnpickleTests(unittest.TestCase):
...
@@ -723,8 +723,8 @@ class AbstractUnpickleTests(unittest.TestCase):
self
.
check_unpickling_error
(
self
.
bad_mark_errors
,
p
)
self
.
check_unpickling_error
(
self
.
bad_mark_errors
,
p
)
def
test_truncated_data
(
self
):
def
test_truncated_data
(
self
):
self
.
check_unpickling_error
(
EOFError
,
b
''
)
self
.
check_unpickling_error
(
EOFError
,
''
)
self
.
check_unpickling_error
(
EOFError
,
b
'N'
)
self
.
check_unpickling_error
(
EOFError
,
'N'
)
badpickles
=
[
badpickles
=
[
'F'
,
# FLOAT
'F'
,
# FLOAT
'F0.0'
,
'F0.0'
,
...
...
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