File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
195
195
-i " pandas.errors.IntCastingNaNError SA01" \
196
196
-i " pandas.errors.InvalidIndexError SA01" \
197
197
-i " pandas.errors.InvalidVersion SA01" \
198
- -i " pandas.errors.MergeError SA01" \
199
198
-i " pandas.errors.NullFrequencyError SA01" \
200
199
-i " pandas.errors.NumExprClobberingError SA01" \
201
200
-i " pandas.errors.NumbaUtilError SA01" \
Original file line number Diff line number Diff line change @@ -261,6 +261,15 @@ class MergeError(ValueError):
261
261
262
262
Subclass of ``ValueError``.
263
263
264
+ See Also
265
+ --------
266
+ DataFrame.join : For joining DataFrames on their indexes.
267
+ merge : For merging two DataFrames on a common set of keys.
268
+ ValueError : Base class for exceptions related to invalid arguments.
269
+ NotImplementedError : A built-in exception that can also be used for abstract
270
+ methods but lacks the specificity of `AbstractMethodError` in indicating
271
+ the need for subclass implementation.
272
+
264
273
Examples
265
274
--------
266
275
>>> left = pd.DataFrame(
You can’t perform that action at this time.
0 commit comments