I noticed some assert statements in wod.py specifically:
assert statements are not checked if __debug__ is set to False. While the default for __debug__ is True, this may not always be the case. See:
https://docs.python.org/2/reference/simple_stmts.html#assert
These should probably be replaced with actual if then raise statements.
I noticed some
assertstatements in wod.py specifically:assertstatements are not checked if__debug__is set toFalse. While the default for__debug__isTrue, this may not always be the case. See:https://docs.python.org/2/reference/simple_stmts.html#assert
These should probably be replaced with actual
ifthenraisestatements.