@@ -912,7 +912,7 @@ class Timestamp(_Timestamp):
912
912
"""
913
913
Timestamp.fromtimestamp(ts)
914
914
915
- timestamp [, tz] -> tz's local time from POSIX timestamp.
915
+ Timestamp [, tz] -> tz's local time from POSIX timestamp.
916
916
"""
917
917
return cls (datetime.fromtimestamp(ts))
918
918
@@ -934,7 +934,7 @@ class Timestamp(_Timestamp):
934
934
"""
935
935
Timestamp.combine(date, time)
936
936
937
- date , time -> datetime with same date and time fields.
937
+ Date , time -> datetime with same date and time fields.
938
938
"""
939
939
return cls (datetime.combine(date, time))
940
940
@@ -1153,7 +1153,7 @@ timedelta}, default 'raise'
1153
1153
1154
1154
def floor (self , freq , ambiguous = ' raise' , nonexistent = ' raise' ):
1155
1155
"""
1156
- return a new Timestamp floored to this resolution.
1156
+ Return a new Timestamp floored to this resolution.
1157
1157
1158
1158
Parameters
1159
1159
----------
@@ -1192,7 +1192,7 @@ timedelta}, default 'raise'
1192
1192
1193
1193
def ceil (self , freq , ambiguous = ' raise' , nonexistent = ' raise' ):
1194
1194
"""
1195
- return a new Timestamp ceiled to this resolution.
1195
+ Return a new Timestamp ceiled to this resolution.
1196
1196
1197
1197
Parameters
1198
1198
----------
@@ -1377,7 +1377,7 @@ default 'raise'
1377
1377
fold = 0 ,
1378
1378
):
1379
1379
"""
1380
- implements datetime.replace, handles nanoseconds.
1380
+ Implements datetime.replace, handles nanoseconds.
1381
1381
1382
1382
Parameters
1383
1383
----------
0 commit comments