From f79bdee20cacc521d7ec3a8720a43087b47326d6 Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Wed, 23 Sep 2015 20:45:19 -0700 Subject: Import gdb 7.10 linux-x86_64 prebuilt. Taken from aosp-master-ndk build 2274331. Bug: http://b/21920612 Change-Id: I2129ab5b85c96273bdb97ee9ca82116bb4db87fa --- lib/python2.7/lib2to3/tests/data/fixers/myfixes/__init__.py | 0 .../lib2to3/tests/data/fixers/myfixes/fix_explicit.py | 6 ++++++ .../lib2to3/tests/data/fixers/myfixes/fix_first.py | 6 ++++++ lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_last.py | 7 +++++++ .../lib2to3/tests/data/fixers/myfixes/fix_parrot.py | 13 +++++++++++++ .../lib2to3/tests/data/fixers/myfixes/fix_preorder.py | 6 ++++++ 6 files changed, 38 insertions(+) create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/__init__.py create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_explicit.py create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_first.py create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_last.py create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_parrot.py create mode 100644 lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_preorder.py (limited to 'lib/python2.7/lib2to3/tests/data/fixers/myfixes') diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/__init__.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_explicit.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_explicit.py new file mode 100644 index 0000000..cbe16f6 --- /dev/null +++ b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_explicit.py @@ -0,0 +1,6 @@ +from lib2to3.fixer_base import BaseFix + +class FixExplicit(BaseFix): + explicit = True + + def match(self): return False diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_first.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_first.py new file mode 100644 index 0000000..a88821f --- /dev/null +++ b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_first.py @@ -0,0 +1,6 @@ +from lib2to3.fixer_base import BaseFix + +class FixFirst(BaseFix): + run_order = 1 + + def match(self, node): return False diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_last.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_last.py new file mode 100644 index 0000000..9a077d4 --- /dev/null +++ b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_last.py @@ -0,0 +1,7 @@ +from lib2to3.fixer_base import BaseFix + +class FixLast(BaseFix): + + run_order = 10 + + def match(self, node): return False diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_parrot.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_parrot.py new file mode 100644 index 0000000..6db79ad --- /dev/null +++ b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_parrot.py @@ -0,0 +1,13 @@ +from lib2to3.fixer_base import BaseFix +from lib2to3.fixer_util import Name + +class FixParrot(BaseFix): + """ + Change functions named 'parrot' to 'cheese'. + """ + + PATTERN = """funcdef < 'def' name='parrot' any* >""" + + def transform(self, node, results): + name = results["name"] + name.replace(Name("cheese", name.prefix)) diff --git a/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_preorder.py b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_preorder.py new file mode 100644 index 0000000..b9bfbba --- /dev/null +++ b/lib/python2.7/lib2to3/tests/data/fixers/myfixes/fix_preorder.py @@ -0,0 +1,6 @@ +from lib2to3.fixer_base import BaseFix + +class FixPreorder(BaseFix): + order = "pre" + + def match(self, node): return False -- cgit v1.2.3