Add Unix main script and test program.

This commit is contained in:
Guido van Rossum 1998-10-10 18:58:15 +00:00
parent 3b4ca0ddad
commit 3d0669d8a1
2 changed files with 22 additions and 0 deletions

19
Tools/idle/test.py Normal file
View file

@ -0,0 +1,19 @@
def f(): a = b = c = d = e = 0; g()
def g(): h()
def h(): i()
def i(): j()
def j(): k()
def k(): l()
l = lambda: test()
def test():
exec "import string; string.capwords(None)" in {}
k()