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 cool-RR
Recipients cool-RR
Date 2012-09-19.18:23:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348079007.17.0.324309830936.issue15975@psf.upfronthosting.co.za>
In-reply-to
Content
Please allow multiplying timedelta by a Decimal:

Python 3.3.0a1 (default, Mar  4 2012, 17:27:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> import decimal
>>> decimal.Decimal('0.1')*datetime.timedelta(seconds=3)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for *: 'Decimal' and 'datetime.timedelta'
>>>
History
Date User Action Args
2012-09-19 18:23:27cool-RRsetrecipients: + cool-RR
2012-09-19 18:23:27cool-RRsetmessageid: <1348079007.17.0.324309830936.issue15975@psf.upfronthosting.co.za>
2012-09-19 18:23:26cool-RRlinkissue15975 messages
2012-09-19 18:23:26cool-RRcreate