diff options
Diffstat (limited to 'lldb/scripts/Python/modify-python-lldb.py')
-rw-r--r-- | lldb/scripts/Python/modify-python-lldb.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/scripts/Python/modify-python-lldb.py b/lldb/scripts/Python/modify-python-lldb.py index 9912cd72528..9728eab6960 100644 --- a/lldb/scripts/Python/modify-python-lldb.py +++ b/lldb/scripts/Python/modify-python-lldb.py @@ -204,7 +204,6 @@ ne_def = " def __ne__(self, other): return not self.__eq__(other)" # Delegate to self.IsValid() if it is defined for the current lldb object. if six.PY2: - print("Test") nonzero_def = " def __nonzero__(self): return self.IsValid()" else: nonzero_def = " def __bool__(self): return self.IsValid()" |