Skip to content

Commit 39dcbb4

Browse files
DOC: fix SA01 for pandas.errors.NumExprClobberingError (#60401)
1 parent 00c2207 commit 39dcbb4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
111111
-i "pandas.core.resample.Resampler.var SA01" \
112112
-i "pandas.errors.IntCastingNaNError SA01" \
113113
-i "pandas.errors.NullFrequencyError SA01" \
114-
-i "pandas.errors.NumExprClobberingError SA01" \
115114
-i "pandas.errors.NumbaUtilError SA01" \
116115
-i "pandas.errors.PerformanceWarning SA01" \
117116
-i "pandas.errors.UndefinedVariableError PR01,SA01" \

pandas/errors/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,11 @@ class NumExprClobberingError(NameError):
538538
to 'numexpr'. 'numexpr' is the default engine value for these methods if the
539539
numexpr package is installed.
540540
541+
See Also
542+
--------
543+
eval : Evaluate a Python expression as a string using various backends.
544+
DataFrame.query : Query the columns of a DataFrame with a boolean expression.
545+
541546
Examples
542547
--------
543548
>>> df = pd.DataFrame({"abs": [1, 1, 1]})

0 commit comments

Comments
 (0)