[Lldb-commits] [lldb] r252384 - Remove a debug print statement.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 6 17:12:53 PST 2015


Author: zturner
Date: Fri Nov  6 19:12:53 2015
New Revision: 252384

URL: http://llvm.org/viewvc/llvm-project?rev=252384&view=rev
Log:
Remove a debug print statement.

Modified:
    lldb/trunk/scripts/Python/modify-python-lldb.py

Modified: lldb/trunk/scripts/Python/modify-python-lldb.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/modify-python-lldb.py?rev=252384&r1=252383&r2=252384&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/modify-python-lldb.py (original)
+++ lldb/trunk/scripts/Python/modify-python-lldb.py Fri Nov  6 19:12:53 2015
@@ -204,7 +204,6 @@ ne_def = "    def __ne__(self, other): r
 # 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()"




More information about the lldb-commits mailing list