File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
283
283
-i " pandas.Timestamp.hour GL08" \
284
284
-i " pandas.Timestamp.is_leap_year SA01" \
285
285
-i " pandas.Timestamp.isocalendar SA01" \
286
- -i " pandas.Timestamp.isoformat SA01" \
287
286
-i " pandas.Timestamp.isoweekday SA01" \
288
287
-i " pandas.Timestamp.max PR02" \
289
288
-i " pandas.Timestamp.microsecond GL08" \
@@ -299,7 +298,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
299
298
-i " pandas.Timestamp.resolution PR02,PR07,SA01" \
300
299
-i " pandas.Timestamp.round SA01" \
301
300
-i " pandas.Timestamp.second GL08" \
302
- -i " pandas.Timestamp.strftime SA01" \
303
301
-i " pandas.Timestamp.strptime PR01,SA01" \
304
302
-i " pandas.Timestamp.time SA01" \
305
303
-i " pandas.Timestamp.timestamp SA01" \
Original file line number Diff line number Diff line change @@ -692,6 +692,12 @@ class NaTType(_NaT):
692
692
See strftime documentation for more information on the format string:
693
693
https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior.
694
694
695
+ See Also
696
+ --------
697
+ Timestamp.isoformat : Return the time formatted according to ISO 8601.
698
+ pd.to_datetime : Convert argument to datetime.
699
+ Period.strftime : Format a single Period.
700
+
695
701
Examples
696
702
--------
697
703
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651')
Original file line number Diff line number Diff line change @@ -1008,6 +1008,12 @@ cdef class _Timestamp(ABCTimestamp):
1008
1008
-------
1009
1009
str
1010
1010
1011
+ See Also
1012
+ --------
1013
+ Timestamp.strftime : Return a formatted string.
1014
+ Timestamp.isocalendar : Return a tuple containing ISO year , week number and
1015
+ weekday.
1016
+
1011
1017
Examples
1012
1018
--------
1013
1019
>>> ts = pd.Timestamp(' 2020-03-14T15:32:52.192548651' )
@@ -1549,6 +1555,12 @@ class Timestamp(_Timestamp):
1549
1555
See strftime documentation for more information on the format string:
1550
1556
https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior.
1551
1557
1558
+ See Also
1559
+ --------
1560
+ Timestamp.isoformat : Return the time formatted according to ISO 8601.
1561
+ pd.to_datetime : Convert argument to datetime.
1562
+ Period.strftime : Format a single Period.
1563
+
1552
1564
Examples
1553
1565
--------
1554
1566
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651')
You can’t perform that action at this time.
0 commit comments