summaryrefslogtreecommitdiff
path: root/lib/python2.7/idlelib/testcode.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/idlelib/testcode.py')
-rw-r--r--lib/python2.7/idlelib/testcode.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/python2.7/idlelib/testcode.py b/lib/python2.7/idlelib/testcode.py
deleted file mode 100644
index 05eaa56..0000000
--- a/lib/python2.7/idlelib/testcode.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import string
-
-def f():
- a = 0
- b = 1
- c = 2
- d = 3
- e = 4
- g()
-
-def g():
- h()
-
-def h():
- i()
-
-def i():
- j()
-
-def j():
- k()
-
-def k():
- l()
-
-l = lambda: test()
-
-def test():
- string.capwords(1)
-
-f()