Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
83f0f43b
Commit
83f0f43b
authored
Feb 19, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We support string pickling now
parent
a7c10a6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test/tests/pickle_test.py
test/tests/pickle_test.py
+4
-2
No files found.
test/tests/pickle_test.py
View file @
83f0f43b
# allow-warning: converting unicode literal to str
# allow-warning: import level 0 will be treated as -1
import
pickle
import
pickle
l
=
[[],
(
123
,)]
l
=
[[],
(
123
,)]
...
@@ -9,5 +12,4 @@ l2 = pickle.loads(s)
...
@@ -9,5 +12,4 @@ l2 = pickle.loads(s)
l3
=
l2
.
pop
()
l3
=
l2
.
pop
()
print
l2
,
l3
,
l2
is
l3
print
l2
,
l3
,
l2
is
l3
# This doesn't work yet; we need str.decode("string-escape")
print
pickle
.
loads
(
pickle
.
dumps
(
"hello world"
))
# print pickle.loads(pickle.dumps("hello world"))
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