File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Other enhancements
43
43
44
44
- :class: `Styler ` may now render CSS more efficiently where multiple cells have the same styling (:issue: `30876 `)
45
45
- When writing directly to a sqlite connection :func: `to_sql ` now supports the ``multi `` method (:issue: `29921 `)
46
- -
46
+ - ` OptionError ` is now exposed in ` pandas.errors ` ( :issue: ` 27553 `)
47
47
-
48
48
49
49
.. ---------------------------------------------------------------------------
Original file line number Diff line number Diff line change 4
4
Expose public exceptions & warnings
5
5
"""
6
6
7
+ from pandas ._config .config import OptionError
8
+
7
9
from pandas ._libs .tslibs import NullFrequencyError , OutOfBoundsDatetime
8
10
9
11
Original file line number Diff line number Diff line change 17
17
"EmptyDataError" ,
18
18
"ParserWarning" ,
19
19
"MergeError" ,
20
+ "OptionError" ,
20
21
],
21
22
)
22
23
def test_exception_importable (exc ):
You can’t perform that action at this time.
0 commit comments