]> granicus.if.org Git - python/commit
Import lib2to3.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 19 Mar 2008 04:43:46 +0000 (04:43 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 19 Mar 2008 04:43:46 +0000 (04:43 +0000)
commit5e37baea8007cb64b65a180e4d6c80de292a8a4a
treeaf8b06bfe03af755de5bf83e9aa01f299186a8f7
parenta4d77898db3856cd3d8c9411d024bea88be25b66
Import lib2to3.
68 files changed:
Lib/lib2to3/Grammar.txt [new file with mode: 0644]
Lib/lib2to3/PatternGrammar.txt [new file with mode: 0644]
Lib/lib2to3/__init__.py [new file with mode: 0644]
Lib/lib2to3/fixes/__init__.py [new file with mode: 0644]
Lib/lib2to3/fixes/basefix.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_apply.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_basestring.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_buffer.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_callable.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_dict.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_except.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_exec.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_execfile.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_filter.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_funcattrs.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_future.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_has_key.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_idioms.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_imports.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_input.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_intern.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_itertools.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_long.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_map.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_methodattrs.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_ne.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_next.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_nonzero.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_numliterals.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_print.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_raise.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_raw_input.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_renames.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_repr.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_standarderror.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_throw.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_tuple_params.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_types.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_unicode.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_ws_comma.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_xrange.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_xreadlines.py [new file with mode: 0644]
Lib/lib2to3/fixes/util.py [new file with mode: 0644]
Lib/lib2to3/patcomp.py [new file with mode: 0644]
Lib/lib2to3/pgen2/__init__.py [new file with mode: 0644]
Lib/lib2to3/pgen2/conv.py [new file with mode: 0644]
Lib/lib2to3/pgen2/driver.py [new file with mode: 0644]
Lib/lib2to3/pgen2/grammar.py [new file with mode: 0644]
Lib/lib2to3/pgen2/literals.py [new file with mode: 0644]
Lib/lib2to3/pgen2/parse.py [new file with mode: 0644]
Lib/lib2to3/pgen2/pgen.py [new file with mode: 0644]
Lib/lib2to3/pgen2/token.py [new file with mode: 0755]
Lib/lib2to3/pgen2/tokenize.py [new file with mode: 0644]
Lib/lib2to3/pygram.py [new file with mode: 0644]
Lib/lib2to3/pytree.py [new file with mode: 0644]
Lib/lib2to3/refactor.py [new file with mode: 0755]
Lib/lib2to3/tests/__init__.py [new file with mode: 0644]
Lib/lib2to3/tests/benchmark.py [new file with mode: 0644]
Lib/lib2to3/tests/data/py2_test_grammar.py [new file with mode: 0644]
Lib/lib2to3/tests/data/py3_test_grammar.py [new file with mode: 0644]
Lib/lib2to3/tests/pytree_idempotency.py [new file with mode: 0755]
Lib/lib2to3/tests/support.py [new file with mode: 0644]
Lib/lib2to3/tests/test_all_fixers.py [new file with mode: 0644]
Lib/lib2to3/tests/test_fixers.py [new file with mode: 0755]
Lib/lib2to3/tests/test_parser.py [new file with mode: 0644]
Lib/lib2to3/tests/test_pytree.py [new file with mode: 0755]
Lib/lib2to3/tests/test_util.py [new file with mode: 0644]
Misc/NEWS