Metadata-Version: 1.1
Name: PrintDebug
Version: 0.0.2
Summary: A small debug printing module that prints extra info like filenames, function names, and line numbers.

Home-page: http://pypi.python.org/pypi/PrintDebug/
Author: Christopher Welborn
Author-email: cj@welbornprod.com
License: LICENSE.txt
Description: PrintDebug
        ==========
        
        A small debug printing module that prints extra info like filenames,
        function names, and line numbers.
        
        More useful stuff may be added in the future.
        
        Example Usage:
        --------------
        
            from printdebug import printdebug
            def myfunction():
                printdebug('Hello from myfunction.')
        
            myfunction()
        
            # Output: myfile.py line #3 in myfunction: Hello from myfunction.
        
        
        
Keywords: python module library 2 3 print debug
Platform: UNKNOWN
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
