【发布时间】:2012-06-05 12:28:01
【问题描述】:
Python datetime.fromtimestamp 在 App Engine Python 2.5 和 2.7 上返回不同的值。
Google App Engine/1.6.6
Python 2.5.2 (r252:60911, May 17 2011, 11:51:03)
[GCC 4.3.1]
>>> import datetime
>>> print datetime.datetime.fromtimestamp(4102444800)
2100-01-01 00:00:00
Google App Engine/1.6.6
Python 2.7.2 (default, Dec 14 2011, 14:36:31)
[GCC 4.4.3]
>>> import datetime
>>> print datetime.datetime.fromtimestamp(4102444800)
1963-11-25 17:31:44
2.5 实例正在返回所需的值。我错过了什么?
【问题讨论】:
标签: python google-app-engine python-2.7 python-2.5