How to use 'clear variables python' in Python

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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
186def 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]

Related snippets