什么是django.utils.datetime_safe,我应该使用它而不是标准的日期时间吗?

时间:2014-02-24 15:16:56

标签: python django datetime

有什么区别?使用datetime_safe更安全吗?我在这个班上找不到任何文件。

1 个答案:

答案 0 :(得分:11)

datetime_safe的源代码中注明了差异:

# Python's datetime strftime doesn't handle dates before 1900.
# These classes override date and datetime to support the formatting of a date
# through its full "proleptic Gregorian" date range.