Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
# TODO: Consider moving these to py_utils

class ALL_TYPE:
    def __repr__(self):
        return "ALL"


class NOT_PROVIDED_TYPE:
    def __repr__(self):
        return "NOT PROVIDED"


class MISSING_TYPE:
    def __repr__(self):
        return "MISSING"


ALL = ALL_TYPE()
NOT_PROVIDED = NOT_PROVIDED_TYPE()
MISSING = MISSING_TYPE()

__all__ = (
    'ALL',
    'NOT_PROVIDED',
    'MISSING',
)