8000 Typeinterval part1 by Dr-Irv · Pull Request #46080 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Typeinterval part1 #46080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Feb 26, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
pandas/core/arrays/masked.py
  • Loading branch information
Dr-Irv committed Feb 21, 2022
commit 5edf5c9f6e1efbc11915d84b99e2dd3f984ef37b
4 changes: 1 addition & 3 deletions pandas/core/arrays/masked.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@
from pandas.core.ops import invalid_comparison

if TYPE_CHECKING:
from lib import NoDefault
from libmissing import NAType
from pandas import Series
from pandas.core.arrays import BooleanArray
from pandas._typing import (
Expand Down Expand Up @@ -338,7 +336,7 @@ def to_numpy(
self,
dtype: npt.DTypeLike | None = None,
copy: bool = False,
na_value: Scalar | NoDefault | NAType = lib.no_default,
na_value: Scalar | lib.NoDefault | libmissing.NAType = lib.no_default,
) -> np.ndarray:
"""
Convert to a NumPy Array.
Expand Down
0