Nuestro equipo debe usar Python 2.4.1 en ciertas circunstancias. strptime
no está presente en el módulo datetime.datetime
en Python 2.4.1:datetime.datetime.strptime no presente en Python 2.4.1
Python 2.4.1 (#65, Mar 30 2005, 09:13:57) [MSC v.1310 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> datetime.datetime.strptime
Traceback (most recent call last):
File "<string>", line 1, in <fragment>
AttributeError: type object 'datetime.datetime' has no attribute 'strptime'
A diferencia de 2,6:
Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> datetime.datetime.strptime
<built-in method strptime of type object at 0x1E1EF898>
Al escribir esto, me encontré en el módulo de tiempo de 2.4.1 :
Python 2.4.1 (#65, Mar 30 2005, 09:16:17) [MSC v.1310 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.strptime
<built-in function strptime>
Puedo considerar que strptime
se trasladaron en algún momento? ¿Cuál es la mejor manera de verificar cosas como esta? Intenté consultar el historial de lanzamientos de Python pero no pude encontrar nada.
Eso explica todo - Pensé que había revisado la documentación para ver si mencionaba cuándo se presentó esto, pero claramente me lo perdí. ¡Gracias! – Nathan