[Python-checkins] cpython (3.3): token.main is now token._main

benjamin.peterson python-checkins at python.org
Tue Feb 5 16:14:16 CET 2013


http://hg.python.org/cpython/rev/c2278cb6cd44
changeset:   82015:c2278cb6cd44
branch:      3.3
parent:      82013:47c65639390d
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Feb 05 10:11:13 2013 -0500
summary:
  token.main is now token._main

files:
  Lib/symbol.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/symbol.py b/Lib/symbol.py
--- a/Lib/symbol.py
+++ b/Lib/symbol.py
@@ -104,7 +104,7 @@
     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()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list