Working with Visual Studio Code IDE with python. -


when debugging , setting breakpoints, if debugger stopped, python script not execute atexit or systemexit. vs code configuration setting? set breakpoint @ print 'done' if stop execution systemexit or part of script not executed.

if __name__ == "__main__":     try:         findexcelfiles('\\datasheets') my_find_excel_files:             print my_find_excel_files.get_excel_files()             my_find_excel_files.excel_files_number_tabs()             print 'done'     except systemexit:         print 'my application ending!' 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -