Source code for pymor.tools.context
# This file is part of the pyMOR project (http://www.pymor.org).
# Copyright 2013-2020 pyMOR developers and contributors. All rights reserved.
# License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
[docs]class NoContext:
def __enter__(self):
pass
def __exit__(self, exc_type, exc_val, exc_tb):
pass
no_context = NoContext()