summaryrefslogtreecommitdiff
path: root/astroid/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/util.py')
-rw-r--r--astroid/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/util.py b/astroid/util.py
index 90ea7d6..10c5415 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':