mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-41260: C impl of datetime.date.strftime() takes different keyword arg (GH-21712)
This commit is contained in:
parent
3a803bcaac
commit
b1dcdefc3a
3 changed files with 7 additions and 2 deletions
|
@ -1489,6 +1489,9 @@ class TestDate(HarmlessMixedComparison, unittest.TestCase):
|
|||
#check that this standard extension works
|
||||
t.strftime("%f")
|
||||
|
||||
# bpo-41260: The parameter was named "fmt" in the pure python impl.
|
||||
t.strftime(format="%f")
|
||||
|
||||
def test_strftime_trailing_percent(self):
|
||||
# bpo-35066: Make sure trailing '%' doesn't cause datetime's strftime to
|
||||
# complain. Different libcs have different handling of trailing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue