mirror of
https://github.com/python/cpython.git
synced 2025-09-03 23:41:18 +00:00
Minor text rearrangement.
This commit is contained in:
parent
c3ab577f34
commit
fc330aeb6f
1 changed files with 10 additions and 10 deletions
|
@ -98,16 +98,6 @@ class OrderedDict(dict):
|
||||||
yield curr.key
|
yield curr.key
|
||||||
curr = curr.prev
|
curr = curr.prev
|
||||||
|
|
||||||
def __reduce__(self):
|
|
||||||
'Return state information for pickling'
|
|
||||||
items = [[k, self[k]] for k in self]
|
|
||||||
inst_dict = vars(self).copy()
|
|
||||||
for k in vars(OrderedDict()):
|
|
||||||
inst_dict.pop(k, None)
|
|
||||||
if inst_dict:
|
|
||||||
return (self.__class__, (items,), inst_dict)
|
|
||||||
return self.__class__, (items,)
|
|
||||||
|
|
||||||
update = __update = MutableMapping.update
|
update = __update = MutableMapping.update
|
||||||
keys = MutableMapping.keys
|
keys = MutableMapping.keys
|
||||||
values = MutableMapping.values
|
values = MutableMapping.values
|
||||||
|
@ -156,6 +146,16 @@ class OrderedDict(dict):
|
||||||
self.__in_repr = False
|
self.__in_repr = False
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
def __reduce__(self):
|
||||||
|
'Return state information for pickling'
|
||||||
|
items = [[k, self[k]] for k in self]
|
||||||
|
inst_dict = vars(self).copy()
|
||||||
|
for k in vars(OrderedDict()):
|
||||||
|
inst_dict.pop(k, None)
|
||||||
|
if inst_dict:
|
||||||
|
return (self.__class__, (items,), inst_dict)
|
||||||
|
return self.__class__, (items,)
|
||||||
|
|
||||||
def copy(self):
|
def copy(self):
|
||||||
'od.copy() -> a shallow copy of od'
|
'od.copy() -> a shallow copy of od'
|
||||||
return self.__class__(self)
|
return self.__class__(self)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue