From df9d60ff733b3e846b923b05da4a7daf664966a0 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 14 Dec 2012 22:24:39 -0500 Subject: [PATCH] Closes #46 Add a TRY to the bunch of items that use handleChildren as a "callback" for lack of a better word in my sleep-deprived condition. --- flake8/pyflakes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake8/pyflakes.py b/flake8/pyflakes.py index 85bd52f..ded6695 100644 --- a/flake8/pyflakes.py +++ b/flake8/pyflakes.py @@ -313,7 +313,7 @@ class Checker(object): # "expr" type nodes BOOLOP = BINOP = UNARYOP = IFEXP = DICT = SET = YIELD = COMPARE = \ - CALL = REPR = ATTRIBUTE = SUBSCRIPT = LIST = TUPLE = handleChildren + CALL = REPR = ATTRIBUTE = SUBSCRIPT = LIST = TUPLE = TRY = handleChildren NUM = STR = ELLIPSIS = ignore