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.

76 lines
1.1 KiB

  1. # line 1
  2. 'A module docstring.'
  3. import sys, inspect
  4. # line 5
  5. # line 7
  6. def spam(a, b, c, d=3, e=4, f=5, *g, **h):
  7. eggs(b + d, c + f)
  8. # line 11
  9. def eggs(x, y):
  10. "A docstring."
  11. global fr, st
  12. fr = inspect.currentframe()
  13. st = inspect.stack()
  14. p = x
  15. q = y / 0
  16. # line 20
  17. class StupidGit:
  18. """A longer,
  19. indented
  20. docstring."""
  21. # line 27
  22. def abuse(self, a, b, c):
  23. """Another
  24. \tdocstring
  25. containing
  26. \ttabs
  27. \t
  28. """
  29. self.argue(a, b, c)
  30. # line 40
  31. def argue(self, a, b, c):
  32. try:
  33. spam(a, b, c)
  34. except:
  35. self.ex = sys.exc_info()
  36. self.tr = inspect.trace()
  37. @property
  38. def contradiction(self):
  39. 'The automatic gainsaying.'
  40. pass
  41. # line 53
  42. class MalodorousPervert(StupidGit):
  43. def abuse(self, a, b, c):
  44. pass
  45. @property
  46. def contradiction(self):
  47. pass
  48. Tit = MalodorousPervert
  49. class ParrotDroppings:
  50. pass
  51. class FesteringGob(MalodorousPervert, ParrotDroppings):
  52. def abuse(self, a, b, c):
  53. pass
  54. @property
  55. def contradiction(self):
  56. pass
  57. async def lobbest(grenade):
  58. pass