More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 demo to Tools, and remove all the other Demo content.

This commit is contained in:
Georg Brandl 2010-12-30 21:33:07 +00:00
parent 6f17e2df29
commit 7fafbc95c0
164 changed files with 25 additions and 12436 deletions

View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
# The above line should get replaced with the path to the Python
# interpreter; the block below should get 2to3-converted.
try:
from test2to3.hello import hello
except ImportError, e:
print "Import failed", e
hello()