Every line of 'clear 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.
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]