summaryrefslogtreecommitdiff
path: root/lib/python2.7/lib2to3/fixes/fix_nonzero.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/lib2to3/fixes/fix_nonzero.py')
-rw-r--r--lib/python2.7/lib2to3/fixes/fix_nonzero.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/python2.7/lib2to3/fixes/fix_nonzero.py b/lib/python2.7/lib2to3/fixes/fix_nonzero.py
deleted file mode 100644
index ba83478..0000000
--- a/lib/python2.7/lib2to3/fixes/fix_nonzero.py
+++ /dev/null
@@ -1,21 +0,0 @@
-"""Fixer for __nonzero__ -> __bool__ methods."""
-# Author: Collin Winter
-
-# Local imports
-from .. import fixer_base
-from ..fixer_util import Name, syms
-
-class FixNonzero(fixer_base.BaseFix):
- BM_compatible = True
- PATTERN = """
- classdef< 'class' any+ ':'
- suite< any*
- funcdef< 'def' name='__nonzero__'
- parameters< '(' NAME ')' > any+ >
- any* > >
- """
-
- def transform(self, node, results):
- name = results["name"]
- new = Name(u"__bool__", prefix=name.prefix)
- name.replace(new)