About 400 results
Open links in new tab
  1. Enum HOWTO — Python 3.13.3 documentation

    2 days ago · While most enum needs can be met by customizing Enum subclasses, either with class decorators or custom functions, EnumType can be subclassed to provide a different …

  2. enum — Support for enumerations — Python 3.13.3 documentation

    2 days ago · EnumType is responsible for setting the correct __repr__(), __str__(), __format__(), and __reduce__() methods on the final enum, as well as creating the enum members, properly …

  3. http — HTTP modules — Python 3.13.3 documentation

    The http module also defines the following enums that help you work with http related code: class http. HTTPStatus ¶

  4. ssl — TLS/SSL wrapper for socket objects — Python 3.13.3 …

    ssl. enum_certificates (store_name) ¶ Retrieve certificates from Windows’ system cert store. store_name may be one of CA, ROOT or MY. Windows may provide additional cert stores, …

  5. dataclasses — Data Classes — Python 3.13.3 documentation

    2 days ago · Python stores default member variable values in class attributes. Consider this example, not using dataclasses: class C : x = [] def add ( self , element ): self . x . append ( …

  6. typing — Support for type hints — Python 3.13.3 documentation

    3 days ago · The Python runtime does not enforce function and variable type annotations. They can be used by third party tools such as type checkers , IDEs, linters, etc. This module …

  7. 7. Simple statements — Python 3.13.3 documentation

    3 days ago · Expression statements are used (mostly interactively) to compute and write a value, or (usually) to call a procedure (a function that returns no meaningful result; in Python, …

Refresh