remain symbol.main to symbol._main mirroring token.py

This commit is contained in:
Benjamin Peterson 2013-02-05 10:13:22 -05:00
parent 0c2e193179
commit 2fdedff213
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@
sym_name[_value] = _name
def main():
def _main():
import sys
import token
if len(sys.argv) == 1:
@ -108,4 +108,4 @@ def main():
token._main()
if __name__ == "__main__":
main()
_main()