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
54fb1925
Commit
54fb1925
authored
Jan 28, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move the NEWOBJ-generating code to a separate function, and invoke it
after checking for __reduce__.
parent
533dbcf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
24 deletions
+28
-24
Lib/pickle.py
Lib/pickle.py
+28
-24
No files found.
Lib/pickle.py
View file @
54fb1925
...
...
@@ -283,30 +283,6 @@ class Pickler:
self
.
save_global
(
obj
)
return
# Check for instance of subclass of common built-in types
# XXX This block is experimental code that will go away!
if
self
.
proto
>=
2
:
if
isinstance
(
obj
,
_builtin_type
):
assert
t
not
in
_builtin_type
# Proper subclass
args
=
()
getnewargs
=
getattr
(
obj
,
"__getnewargs__"
,
None
)
if
getnewargs
:
args
=
getnewargs
()
# This better not reference obj
self
.
save_global
(
t
)
self
.
save
(
args
)
self
.
write
(
NEWOBJ
)
self
.
memoize
(
obj
)
getstate
=
getattr
(
obj
,
"__getstate__"
,
None
)
if
getstate
:
state
=
getstate
()
else
:
state
=
getattr
(
obj
,
"__dict__"
,
None
)
# XXX What about __slots__?
if
state
is
not
None
:
self
.
save
(
state
)
self
.
write
(
BUILD
)
return
# Check copy_reg.dispatch_table
reduce
=
dispatch_table
.
get
(
t
)
if
reduce
:
...
...
@@ -315,6 +291,11 @@ class Pickler:
# Check for __reduce__ method
reduce
=
getattr
(
obj
,
"__reduce__"
,
None
)
if
not
reduce
:
# Check for instance of subclass of common built-in types
if
self
.
proto
>=
2
and
isinstance
(
obj
,
_builtin_type
):
assert
t
not
in
_builtin_type
# Proper subclass
self
.
save_newobj
(
obj
)
return
raise
PicklingError
(
"Can't pickle %r object: %r"
%
(
t
.
__name__
,
obj
))
rv
=
reduce
()
...
...
@@ -384,6 +365,29 @@ class Pickler:
save
(
state
)
write
(
BUILD
)
def
save_newobj
(
self
,
obj
):
# Save a new-style class instance, using protocol 2.
# XXX Much of this is still experimental.
t
=
type
(
obj
)
args
=
()
getnewargs
=
getattr
(
obj
,
"__getnewargs__"
,
None
)
if
getnewargs
:
args
=
getnewargs
()
# This better not reference obj
self
.
save_global
(
t
)
self
.
save
(
args
)
self
.
write
(
NEWOBJ
)
self
.
memoize
(
obj
)
getstate
=
getattr
(
obj
,
"__getstate__"
,
None
)
if
getstate
:
state
=
getstate
()
else
:
state
=
getattr
(
obj
,
"__dict__"
,
None
)
# XXX What about __slots__?
if
state
is
not
None
:
self
.
save
(
state
)
self
.
write
(
BUILD
)
return
# Methods below this point are dispatched through the dispatch table
dispatch
=
{}
...
...
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