[Python-checkins] cpython (merge 3.4 -> default): Merge with 3.4

terry.reedy python-checkins at python.org
Thu Jan 8 05:49:35 CET 2015


https://hg.python.org/cpython/rev/58674a027d10
changeset:   94077:58674a027d10
parent:      94074:b89c84a4426a
parent:      94076:364e44a49a31
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Wed Jan 07 23:49:06 2015 -0500
summary:
  Merge with 3.4

files:
  Lib/idlelib/testcode.py |  31 -----------------------------
  1 files changed, 0 insertions(+), 31 deletions(-)


diff --git a/Lib/idlelib/testcode.py b/Lib/idlelib/testcode.py
deleted file mode 100644
--- a/Lib/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()

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list