collections.deque.insert()

insert(i, x) Insert x into the deque at position i. If the insertion would

2016-10-07 17:28:58
types.MemberDescriptorType

types.MemberDescriptorType The type of objects defined in extension modules with PyMemberDef, such as datetime

2016-10-07 17:45:52
array.array.byteswap()

array.byteswap() “Byteswap” all items of the array. This is only supported for values which are 1, 2, 4, or 8 bytes in size;

2016-10-07 17:26:15
collections.OrderedDict.move_to_end()

move_to_end(key, last=True) Move an existing key to either end of an ordered dictionary. The item is moved to the right

2016-10-07 17:29:00
datetime.date.resolution

date.resolution The smallest possible difference between non-equal date objects, timedelta(days=1).

2016-10-07 17:30:43
collections.Counter.most_common()

most_common([n]) Return a list of the n most common elements and their counts from the most common to the least. If

2016-10-07 17:28:55
datetime.date.strftime()

date.strftime(format) Return a string representing the date, controlled by an explicit format string. Format codes referring

2016-10-07 17:30:43
types.MappingProxyType.items()

items() Return a new view of the underlying mapping’s items ((key, value) pairs).

2016-10-07 17:45:52
reprlib.Repr.maxlevel

Repr.maxlevel Depth limit on the creation of recursive representations. The default is 6.

2016-10-07 17:41:25
datetime.timezone.fromutc()

timezone.fromutc(dt) Return dt + offset. The dt argument must be an aware datetime instance

2016-10-07 17:31:03