/argh/constants.py
https://bitbucket.org/neithere/argh/ · Python · 54 lines · 14 code · 12 blank · 28 comment · 0 complexity · 50d2486a2196aa57cc22f679441caa37 MD5 · raw file
- # -*- coding: utf-8 -*-
- #
- # Copyright (c) 2010—2013 Andrey Mikhaylenko and contributors
- #
- # This file is part of Argh.
- #
- # Argh is free software under terms of the GNU Lesser
- # General Public License version 3 (LGPLv3) as published by the Free
- # Software Foundation. See the file README for copying conditions.
- #
- import argparse
- __all__ = (
- 'ATTR_NAME', 'ATTR_ALIASES', 'ATTR_ARGS', 'ATTR_WRAPPED_EXCEPTIONS',
- 'ATTR_WRAPPED_EXCEPTIONS_PROCESSOR', 'ATTR_EXPECTS_NAMESPACE_OBJECT',
- 'PARSER_FORMATTER'
- )
- #
- # Names of function attributes where Argh stores command behaviour
- #
- # explicit command name (differing from function name)
- ATTR_NAME = 'argh_name'
- # alternative command names
- ATTR_ALIASES = 'argh_aliases'
- # declared arguments
- ATTR_ARGS = 'argh_args'
- # list of exception classes that should be wrapped and printed as results
- ATTR_WRAPPED_EXCEPTIONS = 'argh_wrap_errors'
- # a function to preprocess the exception object when it is wrapped
- ATTR_WRAPPED_EXCEPTIONS_PROCESSOR = 'argh_wrap_errors_processor'
- # forcing argparse.Namespace object instead of signature introspection
- ATTR_EXPECTS_NAMESPACE_OBJECT = 'argh_expects_namespace_object'
- #
- # Other library-wide stuff
- #
- PARSER_FORMATTER = argparse.ArgumentDefaultsHelpFormatter
- """ Default formatter to be used in implicitly instantiated ArgumentParser.
- """
- #-----------------------------------------------------------------------------
- #
- # deprecated
- #
- ATTR_INFER_ARGS_FROM_SIGNATURE = 'argh_infer_args_from_signature'