summaryrefslogtreecommitdiff
path: root/astroid/test_utils.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-07-11 22:50:06 -0400
committerCeridwen <ceridwenv@gmail.com>2015-07-11 22:50:06 -0400
commitd5be6c1926d6fa02b49b320faee5edb1e04f9fae (patch)
treecd91b390e8564c73e35451f27aad7cccf3bd501c /astroid/test_utils.py
parentb63c90162e44e932b9ecc64ff8fa46cf66079c1c (diff)
downloadastroid-git-d5be6c1926d6fa02b49b320faee5edb1e04f9fae.tar.gz
Fix isinstance/proxy bug by changing from lazy-object-proxy to wrapt and minor fixes
Diffstat (limited to 'astroid/test_utils.py')
-rw-r--r--astroid/test_utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/astroid/test_utils.py b/astroid/test_utils.py
index c1d63f17..cb2ab6f4 100644
--- a/astroid/test_utils.py
+++ b/astroid/test_utils.py
@@ -158,7 +158,6 @@ def extract_node(code, module_name=''):
tree = builder.parse(code, module_name=module_name)
extracted = []
- # print(as_string.dump(tree))
if requested_lines:
for line in requested_lines:
extracted.append(_find_statement_by_line(tree, line))