19 lines
544 B
Python
19 lines
544 B
Python
# -*- test-case-name: twisted.python.test.test_constants -*-
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
Symbolic constant support, including collections and constants with text,
|
|
numeric, and bit flag values.
|
|
"""
|
|
|
|
from __future__ import division, absolute_import
|
|
|
|
# Import and re-export Constantly
|
|
from constantly import (NamedConstant, ValueConstant, FlagConstant, Names,
|
|
Values, Flags)
|
|
|
|
__all__ = [
|
|
'NamedConstant', 'ValueConstant', 'FlagConstant',
|
|
'Names', 'Values', 'Flags']
|