File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
331
331
-i " pandas.Timestamp.tzname SA01" \
332
332
-i " pandas.Timestamp.unit SA01" \
333
333
-i " pandas.Timestamp.utcfromtimestamp PR01,SA01" \
334
- -i " pandas.Timestamp.utcnow SA01" \
335
334
-i " pandas.Timestamp.utcoffset SA01" \
336
335
-i " pandas.Timestamp.utctimetuple SA01" \
337
336
-i " pandas.Timestamp.value GL08" \
Original file line number Diff line number Diff line change @@ -769,6 +769,18 @@ class NaTType(_NaT):
769
769
770
770
Return a new Timestamp representing UTC day and time.
771
771
772
+ See Also
773
+ --------
774
+ Timestamp : Constructs an arbitrary datetime.
775
+ Timestamp.now : Return the current local date and time, which
776
+ can be timezone-aware.
777
+ Timestamp.today : Return the current local date and time with
778
+ timezone information set to None.
779
+ to_datetime : Convert argument to datetime.
780
+ date_range : Return a fixed frequency DatetimeIndex.
781
+ Timestamp.utctimetuple : Return UTC time tuple, compatible with
782
+ time.localtime().
783
+
772
784
Examples
773
785
--------
774
786
>>> pd.Timestamp.utcnow() # doctest: +SKIP
Original file line number Diff line number Diff line change @@ -1460,6 +1460,18 @@ class Timestamp(_Timestamp):
1460
1460
1461
1461
Return a new Timestamp representing UTC day and time.
1462
1462
1463
+ See Also
1464
+ --------
1465
+ Timestamp : Constructs an arbitrary datetime.
1466
+ Timestamp.now : Return the current local date and time, which
1467
+ can be timezone-aware.
1468
+ Timestamp.today : Return the current local date and time with
1469
+ timezone information set to None.
1470
+ to_datetime : Convert argument to datetime.
1471
+ date_range : Return a fixed frequency DatetimeIndex.
1472
+ Timestamp.utctimetuple : Return UTC time tuple, compatible with
1473
+ time.localtime().
1474
+
1463
1475
Examples
1464
1476
--------
1465
1477
>>> pd.Timestamp.utcnow() # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments