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