collections.UserDict
  • References/Python/Python/Data Types

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

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

time.tzinfo The object passed as the tzinfo argument to the time constructor, or None if none was

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

weakref.getweakrefs(object) Return a list of all weak reference and proxy objects which refer to object.

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

subtract([iterable-or-mapping]) Elements are subtracted from an iterable or from another mapping (or counter)

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

popitem(last=True) The popitem() method for ordered dictionaries returns and removes a (key, value) pair. The pairs

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

exception weakref.ReferenceError Exception raised when a proxy object is used but the underlying object has been collected.

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

pprint.pformat(object, indent=1, width=80, depth=None, *, compact=False) Return the formatted representation of object

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

datetime.time() Return time object with same hour, minute, second and microsecond. tzinfo is None

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

class collections.abc.KeysView class collections.abc.ValuesView ABCs for mapping, items, keys, and values

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

bisect.bisect_right(a, x, lo=0, hi=len(a)) bisect.bisect(a, x, lo=0, hi=len(a)) Similar to bisect_left()

2025-01-10 15:47:30