datetime.tzinfo
  • References/Python/Python/Data Types

class datetime.tzinfo This is an abstract base class, meaning that this class should not be instantiated directly. You need

2025-01-10 15:47:30
datetime.timezone.dst()
  • References/Python/Python/Data Types

timezone.dst(dt) Always returns None.

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

class datetime.timezone(offset[, name]) The offset argument must be specified as a timedelta object representing

2025-01-10 15:47:30
weakref.ProxyTypes
  • References/Python/Python/Data Types

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

2025-01-10 15:47:30
collections.abc.ByteString
  • References/Python/Python/Data Types

class collections.abc.ByteString ABCs for read-only and mutable sequences.

2025-01-10 15:47:30
collections.abc.Generator
  • References/Python/Python/Data Types

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

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

extend(iterable) Extend the right side of the deque by appending elements from the iterable argument.

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

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

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

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

2025-01-10 15:47:30
weakref.WeakKeyDictionary.keyrefs()
  • References/Python/Python/Data Types

WeakKeyDictionary.keyrefs() Return an iterable of the weak references to the keys.

2025-01-10 15:47:30