Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def notnull(obj):
res = isnull(obj)
if np.isscalar(res):
return not res
return -res
return ~res

def _is_null_datelike_scalar(other):
""" test whether the object is a null datelike, e.g. Nat
Expand Down