morphoorg/morpho

Do not override python built-ins "input" and "iter"

Closed this issue · 1 comments

input() is a built-in function in python. Several Configure() methods currently use input as the name of the input parameter to Configure, which overwrites the python built-in. We should rename all instances to some other variable name (eg params).

"iter" is also a python builtin, and it is currently overwritten in the morpho class.