[Lldb-commits] [lldb] r180223 - Remove a print statement that was left in accidentally.

Greg Clayton gclayton at apple.com
Wed Apr 24 15:21:03 PDT 2013


Author: gclayton
Date: Wed Apr 24 17:21:02 2013
New Revision: 180223

URL: http://llvm.org/viewvc/llvm-project?rev=180223&view=rev
Log:
Remove a print statement that was left in accidentally.


Modified:
    lldb/trunk/examples/python/operating_system.py

Modified: lldb/trunk/examples/python/operating_system.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/operating_system.py?rev=180223&r1=180222&r2=180223&view=diff
==============================================================================
--- lldb/trunk/examples/python/operating_system.py (original)
+++ lldb/trunk/examples/python/operating_system.py Wed Apr 24 17:21:02 2013
@@ -25,7 +25,6 @@ class OperatingSystemPlugIn(object):
         return self.process.target
 
     def create_thread(self, tid, context):
-        print 'tid type is: ' + str(type(tid))
         if tid == 0x444444444:
             thread_info = { 'tid' : tid, 'name' : 'four'  , 'queue' : 'queue4', 'state' : 'stopped', 'stop_reason' : 'none' }
             self.threads.append(thread_info)





More information about the lldb-commits mailing list