MullinRJ 203 Posted May 26, 2016 I am getting frequent errors that do not clear after I edit the module. Python continues to present the error at the end of the Error Output file after the error has been corrected. The errors are in modules I've written that I am importing into a larger program. How can I reset the Python engine to move past this? Example: aVar = Tuple1 - Tuple2 Error received: TypeError: unsupported operand type(s) for -: 'tuple' and 'tuple' So I change the operator to "+": aVar = Tuple1 + Tuple2 but on the next execution I get the same error: TypeError: unsupported operand type(s) for -: 'tuple' and 'tuple' This seems to happen with any "TypeError" I get in an imported module. They do not clear unless I restart VW. I have tried: import Polys from imp import reload reload (Polys) to no avail. Also, turning ON and OFF the "Run scripts in developer mode" pref has no effect. The only thing I have found to work is restarting VW. There has got to be a simple way I am unaware of. TIA, Raymond Quote Share this post Link to post