summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_strptime.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-14 17:44:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-14 17:44:59 (GMT)
commit072e4a3fc7cdca935309b713a01ea1c318a95508 (patch)
treec153a8678230cc7564484e15d8b9b9b23dadc977 /Lib/test/test_strptime.py
parent2d82d049f6094f1ce23404a3ff3fa0960d0c23ed (diff)
downloadcpython-072e4a3fc7cdca935309b713a01ea1c318a95508.zip
cpython-072e4a3fc7cdca935309b713a01ea1c318a95508.tar.gz
cpython-072e4a3fc7cdca935309b713a01ea1c318a95508.tar.bz2
Followup to issue #14157: respect the relative ordering of values produced by time.strptime().
Patch by Hynek.
Diffstat (limited to 'Lib/test/test_strptime.py')
-rw-r--r--Lib/test/test_strptime.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py
index 7245671..90aac5b 100644
--- a/Lib/test/test_strptime.py
+++ b/Lib/test/test_strptime.py
@@ -381,6 +381,11 @@ class StrptimeTests(unittest.TestCase):
def test_feb29_on_leap_year_without_year(self):
time.strptime("Feb 29", "%b %d")
+ def test_mar1_comes_after_feb29_even_when_omitting_the_year(self):
+ self.assertLess(
+ time.strptime("Feb 29", "%b %d"),
+ time.strptime("Mar 1", "%b %d"))
+
class Strptime12AMPMTests(unittest.TestCase):
"""Test a _strptime regression in '%I %p' at 12 noon (12 PM)"""