Message106793
From issue1289118, msg106389:
"""
>>> from datetime import timedelta as d
>>> [d(microseconds=i + .5)//d.resolution for i in range(-10,10)]
[-10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Should this be considered a bug?
For comparison,
>>> [d.resolution*(i+0.5)//d.resolution for i in range(-10,10)]
[-10, -8, -8, -6, -6, -4, -4, -2, -2, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10]
and
>>> [round(i+0.5) for i in range(-10,10)]
[-10, -8, -8, -6, -6, -4, -4, -2, -2, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10]
I checked the documentation and while it says: "If any argument is a float and there are fractional microseconds, the fractional microseconds left over from all arguments are combined and their sum is rounded to the nearest microsecond." it does not specify how half-integers should be handled.
While it may not be a bug in strict sense, it looks like the code in question can be improved.
""" |
|
Date |
User |
Action |
Args |
2010-05-31 16:39:42 | belopolsky | set | recipients:
+ belopolsky, tim.peters, mcherm, rhettinger, mark.dickinson, vstinner, stutzbach |
2010-05-31 16:39:41 | belopolsky | set | messageid: <1275323981.58.0.479401459542.issue8860@psf.upfronthosting.co.za> |
2010-05-31 16:39:38 | belopolsky | link | issue8860 messages |
2010-05-31 16:39:37 | belopolsky | create | |
|