Staging
v0.5.1
https://github.com/python/cpython
Revision e061a51de1b4113ea036a0ad9328eb2f03507b9f authored by Fred Drake on 06 October 1997, 21:40:20 UTC, committed by Fred Drake on 06 October 1997, 21:40:20 UTC
Added docs for symbol and token modules at the end.
1 parent db12f34
Raw File
Tip revision: e061a51de1b4113ea036a0ad9328eb2f03507b9f authored by Fred Drake on 06 October 1997, 21:40:20 UTC
Minor nits (Lib/token.py is a file, token is a module...).
Tip revision: e061a51
builtin.py
# B/W compat hack so code that says "import builtin" won't break after
# name change from builtin to __builtin__.
from __builtin__ import *
back to top