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 ddd6ca1 commit 57efb77Copy full SHA for 57efb77
1 file changed
Lib/_pydatetime.py
@@ -1056,8 +1056,8 @@ def isoformat(self):
1056
This is 'YYYY-MM-DD'.
1057
1058
References:
1059
- - http://www.w3.org/TR/NOTE-datetime
1060
- - http://www.cl.cam.ac.uk/~mgk25/iso-time.html
+ - https://www.w3.org/TR/NOTE-datetime
+ - https://www.cl.cam.ac.uk/~mgk25/iso-time.html
1061
"""
1062
return "%04d-%02d-%02d" % (self._year, self._month, self._day)
1063
@@ -1191,7 +1191,7 @@ def isocalendar(self):
1191
The first week is 1; Monday is 1 ... Sunday is 7.
1192
1193
ISO calendar algorithm taken from
1194
- http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
+ https://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
1195
(used with permission)
1196
1197
year = self._year
0 commit comments