Staging
v0.5.1
https://github.com/python/cpython
Revision 94ba146d11869288ab3def8c7426b3b36701416a authored by Guido van Rossum on 27 April 2014, 17:44:22 UTC, committed by Guido van Rossum on 27 April 2014, 17:44:22 UTC
1 parent 83c1ddd
Raw File
Tip revision: 94ba146d11869288ab3def8c7426b3b36701416a authored by Guido van Rossum on 27 April 2014, 17:44:22 UTC
asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.
Tip revision: 94ba146
maintest.py
#!/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()
back to top