od.copy() -> a shallow copy of od
(self)
| 303 | return self.__class__, (), state, None, iter(self.items()) |
| 304 | |
| 305 | def copy(self): |
| 306 | 'od.copy() -> a shallow copy of od' |
| 307 | return self.__class__(self) |
| 308 | |
| 309 | @classmethod |
| 310 | def fromkeys(cls, iterable, value=None): |