I’m noticing that processing in Python mode is not returning a lot of errors to the console. For instance this:
def draw():
number = 12
for i in 10/number:
print("this should be an error?")
should give me an error message that says:
TypeError: ‘float’ (or ‘int’) object is not iterable
Instead nothing prints and the program still runs. This is happening with a lot of my code and making processing basically unusable. Any ideas of what could be going on?