diff options
author | Enrico Granata <egranata@apple.com> | 2015-12-18 22:46:58 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-12-18 22:46:58 +0000 |
commit | 31ccb51a7f1b6fddaa684095d78c4532598cf51d (patch) | |
tree | 6571be825545652376a121b6b21d8cd0c255bac7 /lldb/scripts/Python/python-extensions.swig | |
parent | 1ea4efb41a10a3d22b438c5ef0e39a5ee6a27eaf (diff) | |
download | bcm5719-llvm-31ccb51a7f1b6fddaa684095d78c4532598cf51d.tar.gz bcm5719-llvm-31ccb51a7f1b6fddaa684095d78c4532598cf51d.zip |
__ne__ is the actual Python operator; __neq__ is a typo
llvm-svn: 256053
Diffstat (limited to 'lldb/scripts/Python/python-extensions.swig')
-rw-r--r-- | lldb/scripts/Python/python-extensions.swig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/python-extensions.swig b/lldb/scripts/Python/python-extensions.swig index e81d0d9795e..fae7f401bf1 100644 --- a/lldb/scripts/Python/python-extensions.swig +++ b/lldb/scripts/Python/python-extensions.swig @@ -1058,7 +1058,7 @@ class value(object): return self_val == other_val raise TypeError("Unknown type %s, No equality operation defined." % str(type(other))) - def __neq__(self, other): + def __ne__(self, other): return not self.__eq__(other) %} |