Metadata-Version: 1.1
Name: calldecorators
Version: 0.0.2
Summary: Tools for working with container types, command data operations, and concise exception handling
Home-page: https://github.com/stroxler/calldecorators
Author: Steven Troxler
Author-email: steven.troxler@gmail.com
License: MIT
Description: Decorators, with the ability to use call arguments
        --------------------------------------------------
        
        By using the `inspectcall` library, `calldecorators` decorators
        can make use of call arguments to functions at runtime, and
        preserves function signature metadata (which is clobbered by most
        decorators) so that this functionality works even when decorators
        are stacked.
        
        The `error_context` decorator uses functionality from
        `tdxutil.exceptions.try_with_lazy_context` to wrap a function call
        in an error handler that can prepend contextual information to an
        error without affecting the stacktrace. This allows errors raised
        b low-level code, which may not have enough information to construct
        error messages indicating what was going on, to be made far more
        informative.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
