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 takluyver
Recipients takluyver
Date 2012-10-28.12:43:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351428222.6.0.656645524198.issue16349@psf.upfronthosting.co.za>
In-reply-to
Content
At least in CPython, format strings can be given as bytes, as an alternative to str. E.g.

>>> struct.unpack(b'>hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03')
(1, 2, 3)

Looking at the source code [1], this appears to be consciously accounted for. But it doesn't seem to be mentioned in the documentation. I think the docs should either say it's a possibility, or warn that it's an implementation detail.

[1] http://hg.python.org/cpython/file/cde4b66699fe/Modules/_struct.c#l1340
History
Date User Action Args
2012-10-28 12:43:42takluyversetrecipients: + takluyver
2012-10-28 12:43:42takluyversetmessageid: <1351428222.6.0.656645524198.issue16349@psf.upfronthosting.co.za>
2012-10-28 12:43:42takluyverlinkissue16349 messages
2012-10-28 12:43:42takluyvercreate