Home
last modified time | relevance | path

Searched refs:move_to_end (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_ordered_dict.py411 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 …]
Dtest_call.py19 od.move_to_end('a')
Dtest_dict.py1428 od.move_to_end('a')
Dtest_builtin.py2340 od.move_to_end('a')
/third_party/python/Doc/library/
Dcollections.rst1098 * :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/
D3.6.1rc1.rst539 move_to_end() method. Contributed by Andra Bogildea.
D3.5.1rc1.rst408 Fixed a bug in C implementation of OrderedDict.move_to_end() that caused
D3.5.3rc1.rst460 move_to_end() method. Contributed by Andra Bogildea.
D3.6.0a1.rst2666 Fixed a bug in C implementation of OrderedDict.move_to_end() that caused
/third_party/python/Lib/
Dinspect.py1955 new_params.move_to_end(param_name)
1957 new_params.move_to_end(param_name)
/third_party/python/Lib/collections/
D__init__.py181 def move_to_end(self, key, last=True): member in OrderedDict
/third_party/python/Doc/whatsnew/
D3.2.rst881 :meth:`~collections.OrderedDict.move_to_end` which takes an existing key and
895 >>> d.move_to_end('X')