Re: #9459 forms.DateTimeField() looses microseconds

2010-09-20 Thread Thomas Guettler
I uploaded a new patch (against trunk) which works on Python 2.4: http://code.djangoproject.com/attachment/ticket/9459/datetime-microseconds-py24.patch I think it is ready for commit. Thomas Tobias McNulty wrote: > On Thu, Sep 9, 2010 at 5:43 AM, Thomas Guettler >

Re: #9459 forms.DateTimeField() looses microseconds

2010-09-10 Thread Thomas Guettler
Tobias McNulty wrote: > On Thu, Sep 9, 2010 at 5:43 AM, Thomas Guettler > wrote: > > Here is the patch: > > http://code.djangoproject.com/attachment/ticket/9459/datetime-microseconds-py25.patch > > If the python version is greater-equal than 2.6, it uses %f

Re: #9459 forms.DateTimeField() looses microseconds

2010-09-09 Thread Tobias McNulty
On Thu, Sep 9, 2010 at 5:43 AM, Thomas Guettler wrote: > Here is the patch: > > http://code.djangoproject.com/attachment/ticket/9459/datetime-microseconds-py25.patch > > If the python version is greater-equal than 2.6, it uses %f to parse the > microseconds, > for older versions it parses the las

#9459 forms.DateTimeField() looses microseconds

2010-09-09 Thread Thomas Guettler
Hi, some days ago I uploaded a new patch for this ticket: http://code.djangoproject.com/ticket/9459 Here is the patch: http://code.djangoproject.com/attachment/ticket/9459/datetime-microseconds-py25.patch If the python version is greater-equal than 2.6, it uses %f to parse the microseconds, fo