summaryrefslogtreecommitdiffstats
path: root/Lib/symbol.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-02-05 15:11:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-02-05 15:11:13 (GMT)
commit003472a6457e5546bff73caae12ed273130b753d (patch)
tree3ad93f53524a33a822c7f25fcabb6f88ab06ee57 /Lib/symbol.py
parent0beab058dd431a7c0d62cfc50d8503616e01fd17 (diff)
downloadcpython-003472a6457e5546bff73caae12ed273130b753d.zip
cpython-003472a6457e5546bff73caae12ed273130b753d.tar.gz
cpython-003472a6457e5546bff73caae12ed273130b753d.tar.bz2
token.main is now token._main
Diffstat (limited to 'Lib/symbol.py')
-rwxr-xr-xLib/symbol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py
index 679e5c8..a702ed3 100755
--- a/Lib/symbol.py
+++ b/Lib/symbol.py
@@ -104,7 +104,7 @@ def main():
import token
if len(sys.argv) == 1:
sys.argv = sys.argv + ["Include/graminit.h", "Lib/symbol.py"]
- token.main()
+ token._main()
if __name__ == "__main__":
main()