ktongue commited on
Commit
9d33046
·
verified ·
1 Parent(s): 05d9f96

Upload hf_env/lib/python3.14/site-packages/pandas/_libs/missing.pyi with huggingface_hub

Browse files
hf_env/lib/python3.14/site-packages/pandas/_libs/missing.pyi ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ from numpy import typing as npt
3
+
4
+ class NAType:
5
+ def __new__(cls, *args, **kwargs): ...
6
+
7
+ NA: NAType
8
+
9
+ def is_matching_na(
10
+ left: object, right: object, nan_matches_none: bool = ...
11
+ ) -> bool: ...
12
+ def isposinf_scalar(val: object) -> bool: ...
13
+ def isneginf_scalar(val: object) -> bool: ...
14
+ def checknull(val: object) -> bool: ...
15
+ def isnaobj(arr: np.ndarray) -> npt.NDArray[np.bool_]: ...
16
+ def is_numeric_na(values: np.ndarray) -> npt.NDArray[np.bool_]: ...
17
+ def is_pdna_or_none(values: np.ndarray) -> npt.NDArray[np.bool_]: ...