diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-02-13 14:02:32 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-02-13 14:02:32 +0000 |
| commit | 03924929ba212368240bd7a26b14208fba965cb9 (patch) | |
| tree | 9be334990e4486b325043bbca0a05adf0b135089 /django/utils/datetime_safe.py | |
| parent | b794441951f7328bbe5bcac305386862fd88f967 (diff) | |
Fixed #12524 -- Clarified handling of pre-1000AD dates in datetime_safe (and thus, the serializers). Patch includes moving the datetime_safe tests into the utils regressiontests module. Thanks to gsf for the report and initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12423 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils/datetime_safe.py')
| -rw-r--r-- | django/utils/datetime_safe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/datetime_safe.py b/django/utils/datetime_safe.py index a048ecd066..b634888092 100644 --- a/django/utils/datetime_safe.py +++ b/django/utils/datetime_safe.py @@ -4,7 +4,7 @@ # # Based on code submitted to comp.lang.python by Andrew Dalke # -# >>> datetime_safe.date(1850, 8, 2).strftime("%Y/%M/%d was a %A") +# >>> datetime_safe.date(1850, 8, 2).strftime("%Y/%m/%d was a %A") # '1850/08/02 was a Friday' from datetime import date as real_date, datetime as real_datetime @@ -83,7 +83,7 @@ def strftime(dt, fmt): sites.append(site) s = s1 - syear = "%4d" % (dt.year,) + syear = "%04d" % (dt.year,) for site in sites: s = s[:site] + syear + s[site+4:] return s |
