We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4da3b commit 87acff1Copy full SHA for 87acff1
pandas/tests/indexes/datetimes/test_date_range.py
@@ -81,6 +81,7 @@ def test_date_range_timestamp_equiv_preserve_frequency(self):
81
82
class TestDateRanges(TestData):
83
def test_date_range_multiplication_overflow(self):
84
+ # GH#24255
85
# check that overflows in calculating `addend = periods * stride`
86
# are caught
87
with tm.assert_produces_warning(None):
@@ -95,6 +96,7 @@ def test_date_range_multiplication_overflow(self):
95
96
date_range('1969-05-04', periods=200000000, freq='30000D')
97
98
def test_date_range_unsigned_overflow_handling(self):
99
100
# case where `addend = periods * stride` overflows int64 bounds
101
# but not uint64 bounds
102
dti = date_range(start='1677-09-22', end='2262-04-11', freq='D')
0 commit comments