Metadata-Version: 2.0
Name: debug-context-manager
Version: 0.1
Summary: super simple context manager to print debug message
Home-page: https://github.com/Psycojoker/debug_context_manager
Author: Laurent Peuch
Author-email: cortex@worlddomination.be
License: MIT
Keywords: debug
Platform: UNKNOWN

Debug Context Manager
=====================

Super simple context manager to wrap a block of code with a debug
message.

Usage
=====

.. code:: python

    from debug_context_manager import debug

    with debug("Doing this stuff"):
        # some code

    with debug("Doing other stuff", "and finished!"):
        # other code



