Skip to content

Commit 19a7ba2

Browse files
authored
revert Timestamp and Timedelta constructors typing allowing NaTType return (#48112)
* revert Timestamp and Timedelta constructors typing allowing NaTType return * exclude 2 files from pyright. Fix up tz methods for NaTType * add tz and tzinfo methods * remove check that tz doesn't exist for NaT
1 parent aa9a1b3 commit 19a7ba2

File tree

6 files changed

+28
-13
lines changed

6 files changed

+28
-13
lines changed

pandas/_libs/tslibs/nattype.pyi

+11-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,17 @@ class NaTType:
6767
def round(self) -> NaTType: ...
6868
def floor(self) -> NaTType: ...
6969
def ceil(self) -> NaTType: ...
70-
def tz_convert(self) -> NaTType: ...
71-
def tz_localize(self) -> NaTType: ...
70+
@property
71+
def tzinfo(self) -> None: ...
72+
@property
73+
def tz(self) -> None: ...
74+
def tz_convert(self, tz: _tzinfo | str | None) -> NaTType: ...
75+
def tz_localize(
76+
self,
77+
tz: _tzinfo | str | None,
78+
ambiguous: str = ...,
79+
nonexistent: str = ...,
80+
) -> NaTType: ...
7281
def replace(
7382
self,
7483
year: int | None = ...,

pandas/_libs/tslibs/nattype.pyx

+7
Original file line numberDiff line numberDiff line change
@@ -1203,6 +1203,13 @@ default 'raise'
12031203
NaT
12041204
""",
12051205
)
1206+
@property
1207+
def tz(self) -> None:
1208+
return None
1209+
1210+
@property
1211+
def tzinfo(self) -> None:
1212+
return None
12061213

12071214

12081215
c_NaT = NaTType() # C-visible

pandas/_libs/tslibs/timedeltas.pyi

+3-5
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,13 @@ class Timedelta(timedelta):
8282
max: ClassVar[Timedelta]
8383
resolution: ClassVar[Timedelta]
8484
value: int # np.int64
85-
def __new__(
85+
# error: "__new__" must return a class instance (got "Union[Timestamp, NaTType]")
86+
def __new__( # type: ignore[misc]
8687
cls: type[_S],
8788
value=...,
8889
unit: str | None = ...,
8990
**kwargs: float | np.integer | np.floating,
90-
) -> _S: ...
91-
# GH 46171
92-
# While Timedelta can return pd.NaT, having the constructor return
93-
# a Union with NaTType makes things awkward for users of pandas
91+
) -> _S | NaTType: ...
9492
@classmethod
9593
def _from_value_and_reso(cls, value: np.int64, reso: int) -> Timedelta: ...
9694
@property

pandas/_libs/tslibs/timestamps.pyi

+4-5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import numpy as np
1616

1717
from pandas._libs.tslibs import (
1818
BaseOffset,
19+
NaTType,
1920
Period,
2021
Tick,
2122
Timedelta,
@@ -31,7 +32,8 @@ class Timestamp(datetime):
3132

3233
resolution: ClassVar[Timedelta]
3334
value: int # np.int64
34-
def __new__(
35+
# error: "__new__" must return a class instance (got "Union[Timestamp, NaTType]")
36+
def __new__( # type: ignore[misc]
3537
cls: type[_DatetimeT],
3638
ts_input: np.integer | float | str | _date | datetime | np.datetime64 = ...,
3739
freq: int | None | str | BaseOffset = ...,
@@ -48,10 +50,7 @@ class Timestamp(datetime):
4850
tzinfo: _tzinfo | None = ...,
4951
*,
5052
fold: int | None = ...,
51-
) -> _DatetimeT: ...
52-
# GH 46171
53-
# While Timestamp can return pd.NaT, having the constructor return
54-
# a Union with NaTType makes things awkward for users of pandas
53+
) -> _DatetimeT | NaTType: ...
5554
def _set_freq(self, freq: BaseOffset | None) -> None: ...
5655
@classmethod
5756
def _from_value_and_reso(

pandas/tests/scalar/test_nat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def test_nat_iso_format(get_nat):
190190
@pytest.mark.parametrize(
191191
"klass,expected",
192192
[
193-
(Timestamp, ["freqstr", "normalize", "to_julian_date", "to_period", "tz"]),
193+
(Timestamp, ["freqstr", "normalize", "to_julian_date", "to_period"]),
194194
(
195195
Timedelta,
196196
[

pyright_reportGeneralTypeIssues.json

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"pandas/util/version",
1717
# and all files that currently don't pass
1818
"pandas/_testing/__init__.py",
19+
"pandas/_testing/_hypothesis.py",
1920
"pandas/core/algorithms.py",
2021
"pandas/core/apply.py",
2122
"pandas/core/array_algos/take.py",
@@ -57,6 +58,7 @@
5758
"pandas/core/indexes/multi.py",
5859
"pandas/core/indexes/numeric.py",
5960
"pandas/core/indexes/period.py",
61+
"pandas/core/indexes/timedeltas.py",
6062
"pandas/core/indexing.py",
6163
"pandas/core/internals/api.py",
6264
"pandas/core/internals/array_manager.py",

0 commit comments

Comments
 (0)