We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b615487 commit 89285c2Copy full SHA for 89285c2
pandas/_libs/tslibs/timestamps.pyx
@@ -635,7 +635,7 @@ cdef class _Timestamp(ABCTimestamp):
635
>>> pd.Timestamp.max
636
Timestamp('2262-04-11 23:47:16.854775807')
637
"""
638
- return max
+ return self.max
639
640
@property
641
def min(self):
@@ -660,7 +660,7 @@ cdef class _Timestamp(ABCTimestamp):
660
>>> pd.Timestamp.min
661
Timestamp('1677-09-21 00:12:43.145224193')
662
663
- return min
+ return self.min
664
665
666
def is_month_start(self) -> bool:
0 commit comments