Skip to content

Commit 818ab4d

Browse files
committed
remove unnecessary comments
1 parent 279fdf6 commit 818ab4d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/core/missing.py

-4
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ def mask_missing(arr, values_to_mask):
3939
# numpy elementwise comparison warning
4040
if is_numeric_v_string_like(arr, x):
4141
mask = False
42-
# elif is_object_dtype(arr):
43-
# mask = lib.scalar_compare(arr, x, operator.eq)
4442
else:
4543
mask = arr == x
4644

@@ -53,8 +51,6 @@ def mask_missing(arr, values_to_mask):
5351
# numpy elementwise comparison warning
5452
if is_numeric_v_string_like(arr, x):
5553
mask |= False
56-
# elif is_object_dtype(arr):
57-
# mask |= lib.scalar_compare(arr, x, operator.eq)
5854
else:
5955
mask |= arr == x
6056

0 commit comments

Comments
 (0)