summaryrefslogtreecommitdiff
path: root/pypers/EXECUTEME.py
blob: 722561c1a1c4077815cc7b9a9262d3f379923722 (plain)
1
2
3
4
5
6
7
8
9
10
11
print '*'*70
print """This is frontend to the script "test.py" that will test the scripts
contained in the book "Object Oriented Programming in Python" and will
create a module called "oopp" needed to run properly the examples."""
print '*'*70

if raw_input("Do you want to continue? (y/n) ")!='y': raise SystemExit

print; execfile('test.py')

raw_input('Press Return to continue ...')