diff options
author | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:21:05 -0500 |
---|---|---|
committer | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:21:05 -0500 |
commit | c7a06ba3ed136eb61b30ef0c4d6703485a86bf45 (patch) | |
tree | b0e536735904746ca3a41ca6f263143639f42893 /astroid/util.py | |
parent | 844cee48683132621b08a9b82f371d4931a29399 (diff) | |
download | astroid-git-c7a06ba3ed136eb61b30ef0c4d6703485a86bf45.tar.gz |
Rename Uninferable and instantiate_class
Diffstat (limited to 'astroid/util.py')
-rw-r--r-- | astroid/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/util.py b/astroid/util.py index 687b2854..0ec266ba 100644 --- a/astroid/util.py +++ b/astroid/util.py @@ -53,10 +53,10 @@ attr_to_method_warning = generate_warning("%s is deprecated and slated for " PendingDeprecationWarning) @object.__new__ -class YES(object): +class Uninferable(object): """Special inference object, which is returned when inference fails.""" def __repr__(self): - return 'YES' + return 'Uninferable' def __getattribute__(self, name): if name == 'next': |