Actions
  Python notes » History » Revision 4
      « Previous |
    Revision 4/5
      (diff)
      | Next »
    
    Amber Herold, 09/20/2011 03:12 PM 
    
    
Python notes¶
- Python Style Guide
 - Python Coding Standards
 - http://blog.dispatched.ch/2011/06/12/how-to-become-a-proficient-python-programmer/
 - http://lucumr.pocoo.org/2011/7/9/python-and-pola/
 - clean python code
 
Debugging¶
- print out the stack trace after an exception is caught:
import traceback one, two, tb = sys.exc_info() traceback.print_tb(tb) 
Updated by Amber Herold about 14 years ago · 5 revisions