Remove a debug print statement.

llvm-svn: 252384
This commit is contained in:
Zachary Turner 2015-11-07 01:12:53 +00:00
parent f748c8937e
commit 37a0fc483b
1 changed files with 0 additions and 1 deletions

View File

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