reprlib.recursive_repr()
  • References/Python/Python/Data Types

@reprlib.recursive_repr(fillvalue="...") Decorator for __repr__() methods to detect recursive calls within the

2025-01-10 15:47:30
datetime.date.day
  • References/Python/Python/Data Types

date.day Between 1 and the number of days in the given month of the given year.

2025-01-10 15:47:30
calendar.LocaleTextCalendar
  • References/Python/Python/Data Types

class calendar.LocaleTextCalendar(firstweekday=0, locale=None) This subclass of TextCalendar can be passed a locale

2025-01-10 15:47:30
calendar.setfirstweekday()
  • References/Python/Python/Data Types

calendar.setfirstweekday(weekday) Sets the weekday (0 is Monday, 6 is Sunday) to start each week.

2025-01-10 15:47:30
copy.error
  • References/Python/Python/Data Types

exception copy.error Raised for module specific errors.

2025-01-10 15:47:30
collections.deque.appendleft()
  • References/Python/Python/Data Types

appendleft(x) Add x to the left side of the deque.

2025-01-10 15:47:30
datetime.date.resolution
  • References/Python/Python/Data Types

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

2025-01-10 15:47:30
array.array.index()
  • References/Python/Python/Data Types

array.index(x) Return the smallest i such that i is the index of the first occurrence of x in the

2025-01-10 15:47:30
types.MappingProxyType
  • References/Python/Python/Data Types

class types.MappingProxyType(mapping) Read-only proxy of a mapping. It provides a dynamic view on the mapping’s entries, which

2025-01-10 15:47:30
collections.deque.insert()
  • References/Python/Python/Data Types

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

2025-01-10 15:47:30