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 skrah
Recipients Arfrever, christian.heimes, georg.brandl, mark.dickinson, meador.inge, ncoghlan, pitrou, python-dev, skrah, vstinner
Date 2012-08-08.11:31:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344425520.44.0.534562747139.issue15573@psf.upfronthosting.co.za>
In-reply-to
Content
Right, byte order specifiers are always at the beginning of the string.
That is at least something. I wonder if we should tighten PEP-3118 to
demand a canonical form of format strings, such as (probably incomplete):

  - Whitespace is disallowed.

  - Except for 's', no zero count may be given.

  - A count of 1 (redundant) is disallowed.

  - Repeats must be specified in terms of count + single char.


That still leaves the '=I' != '=L' problem. Why are there two
specifiers describing uint32_t?


Anyway, as Meador says, this can get tricky and I don't think this
can be resolved before beta-2. I'm attaching a patch that should
behave well for the restricted canonical form at least.
History
Date User Action Args
2012-08-08 11:32:01skrahsetrecipients: + skrah, georg.brandl, mark.dickinson, ncoghlan, pitrou, vstinner, christian.heimes, Arfrever, meador.inge, python-dev
2012-08-08 11:32:00skrahsetmessageid: <1344425520.44.0.534562747139.issue15573@psf.upfronthosting.co.za>
2012-08-08 11:31:59skrahlinkissue15573 messages
2012-08-08 11:31:59skrahcreate