datetime.datetime.resolution

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

2016-10-07 17:30:51
array.array.tounicode()

array.tounicode() Convert the array to a unicode string. The array must be a type 'u' array; otherwise a

2016-10-07 17:26:18
collections.abc.MappingView

class collections.abc.MappingView class collections.abc.ItemsView class collections.abc.KeysView

2016-10-07 17:28:52
datetime.timedelta.resolution

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

2016-10-07 17:31:02
datetime.tzinfo.tzname()

tzinfo.tzname(dt) Return the time zone name corresponding to the datetime object dt, as a string. Nothing

2016-10-07 17:31:05
datetime.date.

date.__str__() For a date d, str(d) is equivalent to d.isoformat().

2016-10-07 17:30:45
collections.Counter.elements()

elements() Return an iterator over elements repeating each as many times as its count. Elements are returned in arbitrary order

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

date.isoweekday() Return the day of the week as an integer, where Monday is 1 and Sunday is 7. For example, date(2002

2016-10-07 17:30:42
reprlib.Repr.maxstring

Repr.maxstring Limit on the number of characters in the representation of the string. Note that the “normal” representation

2016-10-07 17:41:26
bisect.insort()

bisect.insort(a, x, lo=0, hi=len(a)) Similar to insort_left(), but inserting x in a after any

2016-10-07 17:27:34