Searched refs:move_to_end (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_ordered_dict.py | 408 od.move_to_end('c') 410 od.move_to_end('c', False) 412 od.move_to_end('c', False) 414 od.move_to_end('e') 416 od.move_to_end('b', last=False) 419 od.move_to_end('x') 421 od.move_to_end('x', False) 426 od.move_to_end('c', last=False) 428 od.move_to_end('a', last=False) 432 od.move_to_end('a') [all …]
|
D | test_call.py | 18 od.move_to_end('a')
|
D | test_dict.py | 1398 od.move_to_end('a')
|
D | test_builtin.py | 2217 od.move_to_end('a')
|
/external/python/cpython3/Doc/library/ |
D | collections.rst | 1076 * :class:`OrderedDict` has a :meth:`move_to_end` method to 1096 .. method:: move_to_end(key, last=True) 1104 >>> d.move_to_end('b') 1107 >>> d.move_to_end('b', last=False) 1149 self.move_to_end(key) 1163 self.move_to_end(key) 1168 self.move_to_end(key)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.1rc1.rst | 539 move_to_end() method. Contributed by Andra Bogildea.
|
D | 3.5.1rc1.rst | 408 Fixed a bug in C implementation of OrderedDict.move_to_end() that caused
|
D | 3.5.3rc1.rst | 460 move_to_end() method. Contributed by Andra Bogildea.
|
D | 3.6.0a1.rst | 2666 Fixed a bug in C implementation of OrderedDict.move_to_end() that caused
|
/external/python/cpython3/Lib/ |
D | inspect.py | 1829 new_params.move_to_end(param_name) 1831 new_params.move_to_end(param_name)
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 198 def move_to_end(self, key, last=True): member in OrderedDict
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 881 :meth:`~collections.OrderedDict.move_to_end` which takes an existing key and 895 >>> d.move_to_end('X')
|