This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: argument parsing in datetime_strptime
Type: Stage:
Components: Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: gvanrossum, loewis
Priority: normal Keywords:

Created on 2007-08-29 08:43 by loewis, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg55417 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-08-29 08:43
In r57374, the ParseTuple string for datetime_strptime was changed from
ss:datetime to uu:datetime, without adjusting the output arguments. It's
not clear to me what the rationale of this change was; it is incorrect
as u outputs Py_UNICODE, not char.
msg55441 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-08-29 20:52
Should be fixed by r57665.  I'm guessing we went a little too fast with
this change.
History
Date User Action Args
2022-04-11 14:56:26adminsetgithub: 45396
2007-08-29 20:52:13gvanrossumsetstatus: open -> closed
resolution: fixed
messages: + msg55441
nosy: + gvanrossum
2007-08-29 16:49:28loewissetpriority: normal
2007-08-29 08:44:57loewissetnosy: - gvanrossum
2007-08-29 08:44:25loewissetnosy: + gvanrossum
2007-08-29 08:43:50loewiscreate