Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
85c7cdad
Commit
85c7cdad
authored
Dec 07, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
bbf7630d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
3 deletions
+33
-3
lib/Components/cPickle/cPickle.stx
lib/Components/cPickle/cPickle.stx
+33
-3
No files found.
lib/Components/cPickle/cPickle.stx
View file @
85c7cdad
cPickle, A C Pickle Implementation
"cPickle", http://www.digicool.com/releases/cPickle/cPickle-1.0b
1
.tar.gz,
"cPickle", http://www.digicool.com/releases/cPickle/cPickle-1.0b
2
.tar.gz,
is a C implementation of the Python module, pickle.py, and is
fully compatible with pickle: all types picklable by pickle can be
pickled using cPickle [1], and pickles generated using pickle may be
...
...
@@ -112,8 +112,8 @@ cPickle, A C Pickle Implementation
Status
The current release of cPickle is "1.0b
1
",
http://www.digicool.com/releases/cPickle/cPickle-1.0b
1
.tar.gz.
The current release of cPickle is "1.0b
2
",
http://www.digicool.com/releases/cPickle/cPickle-1.0b
2
.tar.gz.
This release requires Python version 1.4 or higher.
This version introduces a special binary mode format for floats.
...
...
@@ -308,6 +308,36 @@ cPickle, A C Pickle Implementation
- A number of cleanups done by Guido were incorporated.
1.0b2 -- I forgot a few things in 1.0b1
New features
- Loading non-binary string pickles checks for insecure
strings. This is needed because cPickle (still) uses
a restricted eval to parse non-binary string pickles.
This change is needed to prevent pickles like::
"S'hello world'*2000000\012p0\012."
from hosing an application.
- User-defined types can now support unpickling without
executing a constructor.
The second value returned from '__reduce__' can now be None,
rather than an argument tuple. On unpickling, if the
second value returned from '__reduce__' during pickling was
None, then rather than calling the first value returned from
'__reduce__', directly, the '__basicnew__' method of the
first value returned from '__reduce__' is called without
arguments.
Cleanup
- Incorporated Guido's changes to cStringIO.h and copy_reg.py
- Removed pickle.py from cPickle distribution.
To do
...
...
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