@@ -3468,6 +3468,9 @@ datetime.date.strptime
34683468 /
34693469
34703470Parse string according to the given date format (like time.strptime()).
3471+
3472+ For a list of supported format codes, see the documentation:
3473+ https://docs.python.org/3/library/datetime.html#format-codes
34713474[clinic start generated code]*/
34723475
34733476static PyObject *
@@ -3608,6 +3611,9 @@ datetime.date.strftime
36083611Format using strftime().
36093612
36103613Example: "%d/%m/%Y, %H:%M:%S".
3614+
3615+ For a list of supported format codes, see the documentation:
3616+ https://docs.python.org/3/library/datetime.html#format-codes
36113617[clinic start generated code]*/
36123618
36133619static PyObject *
@@ -4711,6 +4717,9 @@ datetime.time.strptime
47114717 /
47124718
47134719Parse string according to the given time format (like time.strptime()).
4720+
4721+ For a list of supported format codes, see the documentation:
4722+ https://docs.python.org/3/library/datetime.html#format-codes
47144723[clinic start generated code]*/
47154724
47164725static PyObject *
@@ -4891,6 +4900,8 @@ datetime.time.strftime
48914900Format using strftime().
48924901
48934902The date part of the timestamp passed to underlying strftime should not be used.
4903+ For a list of supported format codes, see the documentation:
4904+ https://docs.python.org/3/library/datetime.html#format-codes
48944905[clinic start generated code]*/
48954906
48964907static PyObject *
@@ -5787,6 +5798,8 @@ datetime.datetime.strptime
57875798 /
57885799
57895800Parse string according to the given date and time format (like time.strptime()).
5801+ For a list of supported format codes, see the documentation:
5802+ https://docs.python.org/3/library/datetime.html#format-codes
57905803[clinic start generated code]*/
57915804
57925805static PyObject *
0 commit comments