Skip to content

Commit fc50027

Browse files
committed
removed comments from example; failing doctests
1 parent 3fe64f4 commit fc50027

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/core/frame.py

-4
Original file line numberDiff line numberDiff line change
@@ -473,18 +473,14 @@
473473
1 2 8
474474
2 4 9
475475
>>> df1.merge(df2, on="C", how="anti_left")
476-
# because `7` is common in column `C` it's dropped from df1
477476
A C B
478477
0 1 5 NaN
479478
1 2 6 NaN
480479
>>> df1.merge(df2, on="C", how="anti_right")
481-
# because `7` is common in column `C` it's dropped from df2
482480
A C B
483481
0 NaN 8 2
484482
1 NaN 9 4
485483
>>> df1.merge(df2, on="C", how="anti_full")
486-
# because `7` is common in column `C` it's dropped from both
487-
# df1 and df2, then outer merged
488484
A C B
489485
0 1.0 5 NaN
490486
1 2.0 6 NaN

0 commit comments

Comments
 (0)