You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
233 B

26 years ago
  1. import string
  2. def f():
  3. a = 0
  4. b = 1
  5. c = 2
  6. d = 3
  7. e = 4
  8. g()
  9. def g():
  10. h()
  11. def h():
  12. i()
  13. def i():
  14. j()
  15. def j():
  16. k()
  17. def k():
  18. l()
  19. l = lambda: test()
  20. def test():
  21. string.capwords(1)
  22. f()