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
cb516b2b
Commit
cb516b2b
authored
Jul 24, 2000
by
Thomas Wouters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
... and yet more ANSIfications...
parent
91c7d5f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Modules/cPickle.c
Modules/cPickle.c
+4
-3
No files found.
Modules/cPickle.c
View file @
cb516b2b
...
...
@@ -134,9 +134,6 @@ static PyObject *__class___str, *__getinitargs___str, *__dict___str,
*
read_str
,
*
readline_str
,
*
__main___str
,
*
__basicnew___str
,
*
copy_reg_str
,
*
dispatch_table_str
,
*
safe_constructors_str
,
*
empty_str
;
static
int
save
();
static
int
put2
();
#ifndef PyList_SET_ITEM
#define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
#endif
...
...
@@ -354,6 +351,10 @@ typedef struct Unpicklerobject {
staticforward
PyTypeObject
Unpicklertype
;
/* Forward decls that need the above structs */
static
int
save
(
Picklerobject
*
,
PyObject
*
,
int
);
static
int
put2
(
Picklerobject
*
,
PyObject
*
);
int
cPickle_PyMapping_HasKey
(
PyObject
*
o
,
PyObject
*
key
)
{
PyObject
*
v
;
...
...
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