This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author olrait
Recipients olrait
Date 2011-06-20.07:41:57
SpamBayes Score 8.488777e-08
Marked as misclassified No
Message-id <BANLkTimYvovSOakbD_hdZUzt=V_xD=vNMg@mail.gmail.com>
In-reply-to
Content
Hello Everybody.

I write you because I found a bug in datetime.now(). (tested in Python 2.6.6
-r266:84297, Aug 24 2010, 18:46:32-win32) This bug is that sometime doesn´t
return milliseconds.

The code to reproduce the bug is: you have to wait a lot of time (from 20
minutes to 2 hours)

from datetime import datetime

while True:

            a=str(datetime.now())

            try:

                        b=a.split(".")[1]

                        print b

            except:

                        print "exception a=%s (if you see in this case there
are not the milliseconds) " % (str(a))

                        break

I new in this . Programing and python specially.

Best Regards

Martin Maqueira
Files
File name Uploaded
unnamed olrait, 2011-06-20.07:41:56
History
Date User Action Args
2011-06-20 07:41:58olraitsetrecipients: + olrait
2011-06-20 07:41:57olraitlinkissue12371 messages
2011-06-20 07:41:57olraitcreate