]> granicus.if.org Git - python/commit
copy lib2to3 from the trunk
authorBenjamin Peterson <benjamin@python.org>
Sat, 6 Feb 2010 02:40:03 +0000 (02:40 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 6 Feb 2010 02:40:03 +0000 (02:40 +0000)
commit18532e5bcb7ec36312a8a3651bbc93a20595a82f
treed361455cc590421a0ff59bd92f7b46e7762c6631
parent6f4e5946d49d365641af4719813e2c5f93c03fcb
copy lib2to3 from the trunk
96 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/fixer_base.py [new file with mode: 0644]
Lib/lib2to3/fixer_util.py [new file with mode: 0644]
Lib/lib2to3/fixes/__init__.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_getcwdu.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_import.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_imports.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_imports2.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_isinstance.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_itertools.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_itertools_imports.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_metaclass.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_operator.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_paren.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_reduce.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_set_literal.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_standarderror.py [new file with mode: 0644]
Lib/lib2to3/fixes/fix_sys_exc.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_urllib.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/fix_zip.py [new file with mode: 0644]
Lib/lib2to3/main.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: 0644]
Lib/lib2to3/tests/__init__.py [new file with mode: 0644]
Lib/lib2to3/tests/data/README [new file with mode: 0644]
Lib/lib2to3/tests/data/bom.py [new file with mode: 0644]
Lib/lib2to3/tests/data/crlf.py [new file with mode: 0644]
Lib/lib2to3/tests/data/different_encoding.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/bad_order.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/__init__.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/no_fixer_cls.py [new file with mode: 0644]
Lib/lib2to3/tests/data/fixers/parrot_example.py [new file with mode: 0644]
Lib/lib2to3/tests/data/infinite_recursion.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_main.py [new file with mode: 0644]
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_refactor.py [new file with mode: 0644]
Lib/lib2to3/tests/test_util.py [new file with mode: 0644]