bpo-41260: C impl of datetime.date.strftime() takes different keyword arg (GH-21712)

This commit is contained in:
Zackery Spytz 2022-11-25 01:21:25 -08:00 committed by GitHub
parent 3a803bcaac
commit b1dcdefc3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View file

@ -1032,13 +1032,13 @@ class date:
_MONTHNAMES[self._month],
self._day, self._year)
def strftime(self, fmt):
def strftime(self, format):
"""
Format using strftime().
Example: "%d/%m/%Y, %H:%M:%S"
"""
return _wrap_strftime(self, fmt, self.timetuple())
return _wrap_strftime(self, format, self.timetuple())
def __format__(self, fmt):
if not isinstance(fmt, str):