Issue #14157: Fix time.strptime failing without a year on February 29th.
Patch by Hynek Schlawack.
diff --git a/Misc/NEWS b/Misc/NEWS
index c4901b0..42fc741 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,9 @@
 Library
 -------
 
+- Issue #14157: Fix time.strptime failing without a year on February 29th.
+  Patch by Hynek Schlawack.
+
 - Issue #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'.
 
 - Issue #14741: Fix missing support for Ellipsis ('...') in parser module.