Debugger to print every line of code accessed in python -
is there option in pdb or other python debugging tool print on screen/print file every line of code being accessed ? going through huge amounts of code copying pasting hand tedious. wondering if give me tips on how in python or tell me if there existing tools so.
looks want code coverage tool. try coverage, tell lines have been executed.
taking @ example in documentation, can display lines executed: http://nedbatchelder.com/code/coverage/sample_html/cogapp_test_cogapp.html
take @ 'reporting' , 'annotating' areas of docs info on how suitable output purposes.
Comments
Post a Comment