791acf5d88cc014493697d01d8c7e0c910de1ef1,lib/matplotlib/testing/conftest.py,,mpl_test_settings,#Any#,21
Before Change
.format(backend, exc))
else:
raise
with warnings.catch_warnings():
warnings.simplefilter("ignore", MatplotlibDeprecationWarning)
matplotlib.style.use(style)
try:
yield
finally:
After Change
.format(backend, exc))
else:
raise
with cbook._suppress_matplotlib_deprecation_warning():
matplotlib.style.use(style)
try:
yield
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: matplotlib/matplotlib
Commit Name: 791acf5d88cc014493697d01d8c7e0c910de1ef1
Time: 2019-02-06
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/testing/conftest.py
Class Name:
Method Name: mpl_test_settings
Project Name: matplotlib/matplotlib
Commit Name: 791acf5d88cc014493697d01d8c7e0c910de1ef1
Time: 2019-02-06
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/testing/__init__.py
Class Name:
Method Name: setup
Project Name: matplotlib/matplotlib
Commit Name: 791acf5d88cc014493697d01d8c7e0c910de1ef1
Time: 2019-02-06
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/style/core.py
Class Name:
Method Name: use