summaryrefslogtreecommitdiff
path: root/rebuilder.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-11-23 10:36:51 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-11-23 10:36:51 +0100
commit7ed10c2269e6a1852b2b5133957d6cf7dba504d4 (patch)
tree8d80968a15b7fdba3450069cc85c2d282762a308 /rebuilder.py
parente87f9321919e5f2b1fc3c6e3b88a5cdf9d6e413e (diff)
downloadastroid-git-7ed10c2269e6a1852b2b5133957d6cf7dba504d4.tar.gz
cleanup: remove useless redirections and aliased imports
Diffstat (limited to 'rebuilder.py')
-rw-r--r--rebuilder.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/rebuilder.py b/rebuilder.py
index de7ca375..49dbb543 100644
--- a/rebuilder.py
+++ b/rebuilder.py
@@ -52,27 +52,6 @@ REDIRECT = {'arguments': 'Arguments',
'ImportFrom': 'From',
'keyword': 'Keyword',
'Repr': 'Backquote',
-
- 'Add': 'BinOp',
- 'Bitand': 'BinOp',
- 'Bitor': 'BinOp',
- 'Bitxor': 'BinOp',
- 'Div': 'BinOp',
- 'FloorDiv': 'BinOp',
- 'LeftShift': 'BinOp',
- 'Mod': 'BinOp',
- 'Mul': 'BinOp',
- 'Power': 'BinOp',
- 'RightShift': 'BinOp',
- 'Sub': 'BinOp',
-
- 'And': 'BoolOp',
- 'Or': 'BoolOp',
-
- 'UnaryAdd': 'UnaryOp',
- 'UnarySub': 'UnaryOp',
- 'Not': 'UnaryOp',
- 'Invert': 'UnaryOp'
}
_key_func = lambda node: node.fromlineno