Skip to content

Commit

Permalink
pythongh-52551: Use wcsftime() to implement time.strftime() on Windows (
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka authored Oct 19, 2024
1 parent 84074a4 commit a7443a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Lib/test/test_strftime.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,7 @@ class Y1900Tests(unittest.TestCase):
def test_y_before_1900(self):
# Issue #13674, #19634
t = (1899, 1, 1, 0, 0, 0, 0, 0, 0)
if (sys.platform == "win32"
or sys.platform.startswith(("aix", "sunos", "solaris"))):
if sys.platform.startswith(("aix", "sunos", "solaris")):
with self.assertRaises(ValueError):
time.strftime("%y", t)
else:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use :c:func:`!wcsftime` to implement :func:`time.strftime` on Windows.
4 changes: 0 additions & 4 deletions Modules/timemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -739,10 +739,6 @@ checktm(struct tm* buf)
return 1;
}

#ifdef MS_WINDOWS
/* wcsftime() doesn't format correctly time zones, see issue #10653 */
# undef HAVE_WCSFTIME
#endif
#define STRFTIME_FORMAT_CODES \
"Commonly used format codes:\n\
\n\
Expand Down

0 comments on commit a7443a1

Please sign in to comment.