diff options
author | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:06:45 -0500 |
---|---|---|
committer | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:06:45 -0500 |
commit | d3d9bcbc91dfb60ee88b1a6667db92fd00172d67 (patch) | |
tree | 8914463c13eefded8295783455f2ec94b86919cd /astroid/util.py | |
parent | 3dcb8ed17e9dd97ae1c39e5d9f743cf5e46861d1 (diff) | |
download | astroid-git-d3d9bcbc91dfb60ee88b1a6667db92fd00172d67.tar.gz |
Rename Uninferable and instatiate_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 90ea7d6d..10c5415a 100644 --- a/astroid/util.py +++ b/astroid/util.py @@ -33,10 +33,10 @@ def reraise(exception): @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': |