Home
last modified time | relevance | path

Searched refs:BokehDeprecationWarning (Results 1 – 11 of 11) sorted by relevance

/dports/www/py-bokeh/bokeh-2.3.3/bokeh/
H A D__init__.py79 from .util.warnings import BokehDeprecationWarning, BokehUserWarning # isort:skip
80 warnings.simplefilter('always', BokehDeprecationWarning)
85 from .util.warnings import BokehDeprecationWarning, BokehUserWarning
86 if category not in (BokehDeprecationWarning, BokehUserWarning):
92 del BokehDeprecationWarning, BokehUserWarning
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/
H A Dtest___init__.py22 from bokeh.util.warnings import BokehDeprecationWarning, BokehUserWarning
87 @pytest.mark.parametrize('cat', (BokehDeprecationWarning, BokehUserWarning))
100 assert ('always', None, BokehDeprecationWarning, None, 0) in warnings.filters
H A Dtest_layouts.py36 from bokeh.util.deprecation import BokehDeprecationWarning
37 with pytest.warns(BokehDeprecationWarning):
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/util/
H A Dtest_deprecation.py42 assert mock_warn.call_args[0] == ("test", dep.BokehDeprecationWarning)
79 … was deprecated in Bokeh 1.2.3 and will be removed, use bar instead.", dep.BokehDeprecationWarning)
86 … deprecated in Bokeh 1.2.3 and will be removed, use bar instead. baz", dep.BokehDeprecationWarning)
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/models/
H A Dtest_graphs.py41 from bokeh.util.deprecation import BokehDeprecationWarning
42 with pytest.warns(BokehDeprecationWarning):
H A Dtest_layouts__models.py99 from bokeh.util.deprecation import BokehDeprecationWarning
100 with pytest.warns(BokehDeprecationWarning):
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/util/
H A Ddeprecation.py23 from .warnings import BokehDeprecationWarning
41 warnings.warn(message, BokehDeprecationWarning, stacklevel=stacklevel)
H A Dwarnings.py37 class BokehDeprecationWarning(DeprecationWarning): class
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/sphinxext/
H A Dbokeh_prop.py64 from bokeh.util.warnings import BokehDeprecationWarning
114 warnings.filterwarnings("ignore", category=BokehDeprecationWarning)
H A Dbokeh_model.py65 from bokeh.util.warnings import BokehDeprecationWarning
122 warnings.filterwarnings("ignore", category=BokehDeprecationWarning)
H A Dbokeh_plot.py103 from bokeh.util.warnings import BokehDeprecationWarning
259 warnings.filterwarnings("ignore", category=BokehDeprecationWarning)