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 ethan.furman
Recipients Arfrever, eric.smith, ethan.furman, martin.panter, nascheme, ncoghlan, vstinner
Date 2015-01-18.18:37:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421606243.05.0.569986851238.issue20284@psf.upfronthosting.co.za>
In-reply-to
Content
Here's the patch -- the code for % and %= is in place for bytes and bytearray;  I still need to get the doc patch done.  I'll commit Wednesday-ish barring problems.

Big question
============

Background
----------
There is a Python C ABI function called PyBytes_FromFormat which is used to create bytes objects using the %-interpolation format (it takes a c string and none-or-many c args).

Actual Question
---------------
Should PyBytes_FromFormat also support the new codes of %a and %b ?

My Thoughts
-----------
Writing things down is good!  %a and %b are both for Python level arguments, not C-level arguments, so %a and %b would make no sense.
History
Date User Action Args
2015-01-18 18:37:24ethan.furmansetrecipients: + ethan.furman, nascheme, ncoghlan, vstinner, eric.smith, Arfrever, martin.panter
2015-01-18 18:37:23ethan.furmansetmessageid: <1421606243.05.0.569986851238.issue20284@psf.upfronthosting.co.za>
2015-01-18 18:37:23ethan.furmanlinkissue20284 messages
2015-01-18 18:37:22ethan.furmancreate