1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18:
import pygtk pygtk.require('2.0') import gtk class SomeWidgets: def foo foo foo def another foo foo foo etc etc etc def main(): gtk.main() return 0 if _name_ == "_main_": SomeWidgets() main()
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
def foo(): a = 3 # IndentationError: expected an indented block def foo(): a = 3 b = 4 # IndentationError: unexpected indent def foo(): a = 3 b = 4 # IndentationError: unindent does not match any outer indentation level