diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 04:54:06 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 04:54:06 (GMT) |
commit | 8f377a3bbe5588da3328ab816ce5f707aa3c97ac (patch) | |
tree | 62c817e6719637d8086ab7c34554bb2895f06303 /Modules | |
parent | c824e9a713efac8d14e4d697f8c01a52c8f0d42c (diff) | |
download | cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.zip cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.tar.gz cpython-8f377a3bbe5588da3328ab816ce5f707aa3c97ac.tar.bz2 |
Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index a24728a..faed0e1 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -549,7 +549,7 @@ time_strftime(PyObject *self, PyObject *args) if (outbuf[1]=='#') ++outbuf; /* not documented by python, */ if (outbuf[1]=='\0' || - !wcschr(L"aAbBcdfHIjmMpSUwWxXyYzZ%", outbuf[1])) + !wcschr(L"aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1])) { PyErr_SetString(PyExc_ValueError, "Invalid format string"); return 0; |