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, benjamin.peterson, christian.heimes, eric.araujo, eric.smith, georg.brandl, gvanrossum, michael.foord, robin.stocker, tav
Date 2010-02-13.15:57:38
SpamBayes Score 4.1874577e-07
Marked as misclassified No
Message-id <1266076719.62.0.611729991834.issue1745@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:25:36alexandre.vassalottiunlinkissue1745 messages
2010-02-13 15:58:39alexandre.vassalottisetrecipients: + alexandre.vassalotti, gvanrossum, georg.brandl, eric.smith, christian.heimes, benjamin.peterson, robin.stocker, eric.araujo, tav, michael.foord
2010-02-13 15:58:39alexandre.vassalottisetmessageid: <1266076719.62.0.611729991834.issue1745@psf.upfronthosting.co.za>
2010-02-13 15:57:39alexandre.vassalottilinkissue1745 messages
2010-02-13 15:57:38alexandre.vassalotticreate