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.

作者 mark.dickinson
收信人 facundobatista, mark.dickinson, rhettinger, skrah
日期 2010-05-22.10:18:13
SpamBayes Score 0.10752229
Marked as misclassified
Message-id <1274523495.24.0.10799095221.issue8540@psf.upfronthosting.co.za>
In-reply-to
内容
> 1) c = Decimal64Context
> 
> 2) c = Context(Decimal64)

Rather that complicating the Context constructor, I'd prefer a separate factory function.  I was thinking of something like:

def IEEEContext(n):
    """Return the decimal<n> IEEE 754 context.  n should be a multiple
    of 32."""
    ...

Again, it's clear with this that you get a new context object (I agree that there are problems with (1) and the mutability of Contexts).
历史
日期 用户 动作 参数
2010-05-22 10:18:15mark.dickinson修改recipients: + mark.dickinson, rhettinger, facundobatista, skrah
2010-05-22 10:18:15mark.dickinson修改messageid: <1274523495.24.0.10799095221.issue8540@psf.upfronthosting.co.za>
2010-05-22 10:18:14mark.dickinson链接issue8540 messages
2010-05-22 10:18:14mark.dickinson创建