diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-14 20:42:22 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-14 20:42:22 +0200 |
commit | 8ad7d762f53e094d9b88127b6cf09e38ea565e96 (patch) | |
tree | 6e2b04cdd658ad01c55640ed8cf8b52121f0e31d /Lib/symbol.py | |
parent | 043c30ba7dfbd17596a59f6ac6afe508a2e04fbd (diff) | |
parent | a566549211d48775b6573e74dc55dd0fcde0600b (diff) | |
download | cpython-8ad7d762f53e094d9b88127b6cf09e38ea565e96.tar.gz |
Issue #19623: Fixed writing to unseekable files in the aifc module.
Diffstat (limited to 'Lib/symbol.py')
-rwxr-xr-x | Lib/symbol.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py index 34143b5d8e..5cf4a65f22 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -100,7 +100,7 @@ for _name, _value in list(globals().items()): 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() |