aboutsummaryrefslogtreecommitdiff
path: root/lldb/scripts/Python/modify-python-lldb.py
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-11-07 01:12:53 +0000
committerZachary Turner <zturner@google.com>2015-11-07 01:12:53 +0000
commit37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9 (patch)
tree66f28ae001f5dd51ac6a442f797fb202a59c2d06 /lldb/scripts/Python/modify-python-lldb.py
parentf748c8937e71b70386833829a65436cdff15d286 (diff)
downloadllvm-37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9.zip
llvm-37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9.tar.gz
llvm-37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9.tar.bz2
Remove a debug print statement.
llvm-svn: 252384
Diffstat (limited to 'lldb/scripts/Python/modify-python-lldb.py')
-rw-r--r--lldb/scripts/Python/modify-python-lldb.py1
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 9912cd7..9728eab 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()"