Remove a print statement that was left in accidentally.

llvm-svn: 180223
This commit is contained in:
Greg Clayton 2013-04-24 22:21:02 +00:00
parent fdb497a9b2
commit 8d1d25222e
1 changed files with 0 additions and 1 deletions
lldb/examples/python

View File

@ -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)