diff options
Diffstat (limited to 'Lib/lib2to3/fixer_base.py')
-rw-r--r-- | Lib/lib2to3/fixer_base.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/lib2to3/fixer_base.py b/Lib/lib2to3/fixer_base.py index 1b11faf..66737f4 100644 --- a/Lib/lib2to3/fixer_base.py +++ b/Lib/lib2to3/fixer_base.py @@ -94,10 +94,6 @@ class BaseFix(object): """ raise NotImplementedError() - def parenthesize(self, node): - """Wrapper around pygram.parenthesize().""" - return pygram.parenthesize(node) - def new_name(self, template="xxx_todo_changeme"): """Return a string suitable for use as an identifier |