Searched refs:move_to_end (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Lib/test/ |
D | test_ordered_dict.py | 411 od.move_to_end('c') 413 od.move_to_end('c', False) 415 od.move_to_end('c', False) 417 od.move_to_end('e') 419 od.move_to_end('b', last=False) 422 od.move_to_end('x') 424 od.move_to_end('x', False) 429 od.move_to_end('c', last=False) 431 od.move_to_end('a', last=False) 435 od.move_to_end('a') [all …]
|
D | test_call.py | 19 od.move_to_end('a')
|
D | test_dict.py | 1428 od.move_to_end('a')
|
D | test_builtin.py | 2340 od.move_to_end('a')
|
/third_party/python/Doc/library/ |
D | collections.rst | 1098 * :class:`OrderedDict` has a :meth:`move_to_end` method to 1118 .. method:: move_to_end(key, last=True) 1128 >>> d.move_to_end('b') 1131 >>> d.move_to_end('b', last=False) 1173 self.move_to_end(key) 1193 self.cache.move_to_end(args) 1225 self.cache.move_to_end(args) 1230 self.requests.move_to_end(args)
|
/third_party/python/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
|
/third_party/python/Lib/ |
D | inspect.py | 1955 new_params.move_to_end(param_name) 1957 new_params.move_to_end(param_name)
|
/third_party/python/Lib/collections/ |
D | __init__.py | 181 def move_to_end(self, key, last=True): member in OrderedDict
|
/third_party/python/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')
|