8000
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 74f897e commit aed28ebCopy full SHA for aed28eb
Lib/_pydatetime.py
@@ -1127,8 +1127,8 @@ def isoformat(self):
1127
This is 'YYYY-MM-DD'.
1128
1129
References:
1130
- - http://www.w3.org/TR/NOTE-datetime
1131
- - 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
1132
"""
1133
return "%04d-%02d-%02d" % (self._year, self._month, self._day)
1134
@@ -1262,7 +1262,7 @@ def isocalendar(self):
1262
The first week is 1; Monday is 1 ... Sunday is 7.
1263
1264
ISO calendar algorithm taken from
1265
- http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
+ https://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
1266
(used with permission)
1267
1268
year = self._year
0 commit comments