Initialize an ordered dictionary. The signature is the same as regular dictionaries. Keyword argument order is preserved.
(self, other=(), /, **kwds)
| 112 | return self |
| 113 | |
| 114 | def __init__(self, other=(), /, **kwds): |
| 115 | '''Initialize an ordered dictionary. The signature is the same as |
| 116 | regular dictionaries. Keyword argument order is preserved. |
| 117 | ''' |
| 118 | self.__update(other, **kwds) |
| 119 | |
| 120 | def __setitem__(self, key, value, |
| 121 | dict_setitem=dict.__setitem__, proxy=_proxy, Link=_Link): |