Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.py 513B

123456789101112131415161718192021
  1. # -*- test-case-name: twisted.python.test.test_constants -*-
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. Symbolic constant support, including collections and constants with text,
  6. numeric, and bit flag values.
  7. """
  8. # Import and re-export Constantly
  9. from constantly import ( # type: ignore[import]
  10. FlagConstant,
  11. Flags,
  12. NamedConstant,
  13. Names,
  14. ValueConstant,
  15. Values,
  16. )
  17. __all__ = ["NamedConstant", "ValueConstant", "FlagConstant", "Names", "Values", "Flags"]