├── HISTORY.markdown ├── README.markdown ├── UNLICENSE ├── debug.py ├── manual_test.py ├── manual_test_directory ├── __init__.py └── debug.py └── setup.py /HISTORY.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/HISTORY.markdown -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/README.markdown -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/UNLICENSE -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/debug.py -------------------------------------------------------------------------------- /manual_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/manual_test.py -------------------------------------------------------------------------------- /manual_test_directory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/manual_test_directory/__init__.py -------------------------------------------------------------------------------- /manual_test_directory/debug.py: -------------------------------------------------------------------------------- 1 | print 'manual_test_directory/debug.py says hi' 2 | 3 | x = 0 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narfdotpl/debug/HEAD/setup.py --------------------------------------------------------------------------------