Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 236 Bytes

File metadata and controls

13 lines (7 loc) · 236 Bytes

python utility

  • -O: optimize.

    • assert is removed from .pyc

    • __debug__ == False

      You can write stuff like

      if __debug__: print "debug"
      

      and it will only show show is -O is off.