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 mark.dickinson
Recipients alexandre.vassalotti, bob.ippolito, brian.curtin, ede, josiahcarlson, loewis, mark.dickinson, mwh, pitrou, rhettinger, tim.peters
Date 2010-02-13.18:44:33
SpamBayes Score 0.00023704776
Marked as misclassified No
Message-id <1266086734.25.0.566767532739.issue1023290@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks, Alexandre!  Agreed on both points.  I don't really want to allow u'big' and u'little', but I think that's just my laziness talking.  (Apart from that, I have a working patch.)

There's some precedent for not allowing the unicode versions:

>>> float.__getformat__("double")
'IEEE, little-endian'
>>> float.__getformat__(u"double")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __getformat__() argument must be string, not unicode

But I admit it isn't particularly compelling.
History
Date User Action Args
2010-02-13 18:45:34mark.dickinsonsetrecipients: + mark.dickinson, mwh, tim.peters, loewis, rhettinger, josiahcarlson, bob.ippolito, pitrou, alexandre.vassalotti, ede, brian.curtin
2010-02-13 18:45:34mark.dickinsonsetmessageid: <1266086734.25.0.566767532739.issue1023290@psf.upfronthosting.co.za>
2010-02-13 18:44:34mark.dickinsonlinkissue1023290 messages
2010-02-13 18:44:33mark.dickinsoncreate