Every line of 'clear all variables python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
79 def clear(self): 80 VariableModel.clear(self) 81 self._stackTop = None 82 self._returnVar = None
186 def clear_environment(self): 187 """ Clear the environment : variables, functions previously added """ 188 for name in self.environment: 189 if (name != 'app') and (name in self.locals): 190 del self.locals[name]