collections.abc.Generator

class collections.abc.Generator ABC for generator classes that implement the protocol defined in

2016-10-07 17:28:51
pprint.PrettyPrinter.pprint()

PrettyPrinter.pprint(object) Print the formatted representation of object on the configured stream, followed by a newline

2016-10-07 17:40:56
calendar.Calendar.itermonthdates()

itermonthdates(year, month) Return an iterator for the month month (1-12) in the year year. This iterator

2016-10-07 17:28:15
weakref.ProxyTypes

weakref.ProxyTypes Sequence containing all the type objects for proxies. This can make it simpler to test if an object is a

2016-10-07 17:47:18
heapq.heapreplace()

heapq.heapreplace(heap, item) Pop and return the smallest item from the heap, and also push the new item.

2016-10-07 17:33:42
types.ModuleType

class types.ModuleType(name, doc=None) The type of modules. Constructor takes the name

2016-10-07 17:45:52
collections.UserDict

class collections.UserDict([initialdata]) Class that simulates a dictionary. The instance’s contents are kept in a regular dictionary

2016-10-07 17:29:02
datetime.datetime.isocalendar()

datetime.isocalendar() Return a 3-tuple, (ISO year, ISO week number, ISO weekday). The same as self.date().isocalendar()

2016-10-07 17:30:48
heapq.merge()

heapq.merge(*iterables, key=None, reverse=False) Merge multiple sorted inputs into a single sorted output (for example, merge

2016-10-07 17:33:43
collections.deque.extendleft()

extendleft(iterable) Extend the left side of the deque by appending elements from iterable. Note, the series of left

2016-10-07 17:28:58