removed debugging print statements

This commit is contained in:
Matt Tressler
2020-07-30 23:24:23 +01:00
committed by ikelos
parent 34ff856a79
commit 71dc85ade5
@@ -419,7 +419,6 @@ class list_head(objects.StructType, collections.abc.Iterable):
try:
link = getattr(self, direction).dereference()
except exceptions.InvalidAddressException:
print("return here")
return
if not sentinel:
@@ -435,7 +434,6 @@ class list_head(objects.StructType, collections.abc.Iterable):
try:
link = getattr(self, direction).dereference()
except exceptions.InvalidAddressException:
print("break here")
break
def __iter__(self) -> Iterator[interfaces.objects.ObjectInterface]: