summaryrefslogtreecommitdiff
path: root/astroid/manager.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-11-06 17:55:24 -0500
committerCeridwen <ceridwenv@gmail.com>2015-11-06 17:55:24 -0500
commite28cf4e572d25d559c274acc81a7aff887d28efb (patch)
tree2437d1981dee3eb5d042ae478968f5f6e807125c /astroid/manager.py
parentf5c3e703ec3de5d6e4f50583475d7b18fb0d6beb (diff)
downloadastroid-e28cf4e572d25d559c274acc81a7aff887d28efb.tar.gz
Rename Uninferable and instantiate_class, fix broken tests, improve
testing. * Rename YES to Uninferable * Rename instanciate_class to instantiate_class. * Use six in test_namedtuple_advanced_inference. * Fix test_file_from_module failure on PyPy. * Add enum34 to unittest_brain. * Add unittest_brain dependencies tox.ini.
Diffstat (limited to 'astroid/manager.py')
-rw-r--r--astroid/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/manager.py b/astroid/manager.py
index 07d7543..e979554 100644
--- a/astroid/manager.py
+++ b/astroid/manager.py
@@ -245,7 +245,7 @@ class AstroidManager(object):
yield inferred
else:
for inferred in modastroid.igetattr(name, context):
- yield inferred.instanciate_class()
+ yield inferred.instantiate_class()
def register_failed_import_hook(self, hook):
"""Registers a hook to resolve imports that cannot be found otherwise.