Often you need to disable try/except blocks while debugging code because you want to find out the point of occurrence of the exception and other info which is swallowed by the block that catches the exception. With languages that use braces for block demarcation, it's as easy as simply commenting out the try and catch/except lines, minding the
(
Read more... )