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 alexandre.vassalotti
Recipients alexandre.vassalotti, bob.ippolito, brian.curtin, ede, josiahcarlson, loewis, mark.dickinson, mwh, pitrou, rhettinger, tim.peters
Date 2010-02-13.17:27:29
SpamBayes Score 4.1874577e-07
Marked as misclassified No
Message-id <1266082109.53.0.962989982682.issue1023290@psf.upfronthosting.co.za>
In-reply-to
Content
Mark Dickinson added the comment:
> (1) should the 'signed' parameter remain keyword-only in 2.7?

We should keep it as a keyword-only argument.  Also, issue #1745 might bring keyword-only arguments to 2.7.

> (2) When specifying the byteorder, is there a need to allow u'big' and
> u'little' as well as 'big' and 'little'?

Allow both. Since, 'big' == u'big' is True, it would be weird to treat them differently in this case.

Plus, it will make life easier for people who uses:

  from __future__ import unicode_literals

in their code.
History
Date User Action Args
2010-02-13 17:28:30alexandre.vassalottisetrecipients: + alexandre.vassalotti, mwh, tim.peters, loewis, rhettinger, josiahcarlson, bob.ippolito, mark.dickinson, pitrou, ede, brian.curtin
2010-02-13 17:28:29alexandre.vassalottisetmessageid: <1266082109.53.0.962989982682.issue1023290@psf.upfronthosting.co.za>
2010-02-13 17:27:29alexandre.vassalottilinkissue1023290 messages
2010-02-13 17:27:29alexandre.vassalotticreate