Exception raised for pandas.options. Backwards compatible with KeyError checks. See Also -------- options : Access and modify global pandas settings. Examples -------- >>> pd.options.context Traceback (most recent call last): OptionError: No such option
| 101 | |
| 102 | |
| 103 | class OptionError(AttributeError, KeyError): |
| 104 | """ |
| 105 | Exception raised for pandas.options. |
| 106 | |
| 107 | Backwards compatible with KeyError checks. |
| 108 | |
| 109 | See Also |
| 110 | -------- |
| 111 | options : Access and modify global pandas settings. |
| 112 | |
| 113 | Examples |
| 114 | -------- |
| 115 | >>> pd.options.context |
| 116 | Traceback (most recent call last): |
| 117 | OptionError: No such option |
| 118 | """ |
| 119 | |
| 120 | __module__ = "pandas.errors" |
| 121 | |
| 122 | |
| 123 | # |
no outgoing calls
no test coverage detected