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: time.strptime() not present in Python 1.5.2 for MSWin
Type: enhancement Stage:
Components: Extension Modules Versions:
process
Status: closed Resolution: later
Dependencies: Superseder:
Assigned To: tim.peters Nosy List: jhylton, mikent, tim.peters
Priority: low Keywords:

Created on 2000-08-18 13:54 by mikent, last changed 2022-04-10 16:02 by admin. This issue is now closed.

Messages (4)
msg1042 - (view) Author: Mike Kent (mikent) Date: 2000-08-18 13:54
Using Python 1.5.2 for MSWin, any attempt to use the time.strptime() function from the time module results in the error:
AttributeError: strptime

This error does not occur for the Unix version of Python 1.5.2.
msg1043 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2000-08-18 17:38
Changed to group Feature Request.
strptime is available from Python only on those platforms where this (non-standard) C function happens to be available from the platform C library.  Windows is not one of those.  Not all Unix versions have it either.  The docs already say that.  The only way it will become available is if someone contributes an implementation.
msg1044 - (view) Author: Jeremy Hylton (jhylton) (Python triager) Date: 2000-09-07 22:06
Please do triage on this bug.
msg1045 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2000-09-16 02:12
Moved to PEP42, awaiting a volunteer.
History
Date User Action Args
2022-04-10 16:02:17adminsetgithub: 32954
2000-08-18 13:54:40mikentcreate