Renamed test.py to testcode.py so one can import Python's

test package from inside IDLE.  (Suggested by Jack Jansen.)
This commit is contained in:
Guido van Rossum 1999-01-12 22:14:34 +00:00
parent 5051f4f80d
commit 894ee6f668

31
Tools/idle/testcode.py Normal file
View file

@ -0,0 +1,31 @@
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()