diff options
author | Zachary Turner <zturner@google.com> | 2015-11-07 01:12:53 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-07 01:12:53 +0000 |
commit | 37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9 (patch) | |
tree | 66f28ae001f5dd51ac6a442f797fb202a59c2d06 /lldb/scripts/Python | |
parent | f748c8937e71b70386833829a65436cdff15d286 (diff) | |
download | bcm5719-llvm-37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9.tar.gz bcm5719-llvm-37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9.zip |
Remove a debug print statement.
llvm-svn: 252384
Diffstat (limited to 'lldb/scripts/Python')
-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()" |