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 serhiy.storchaka
Recipients Oren Milman, benjamin.peterson, ncoghlan, serhiy.storchaka, veky
Date 2017-08-26.15:47:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503762444.97.0.641883479173.issue31271@psf.upfronthosting.co.za>
In-reply-to
Content
> do you still think we should backport to 2.7?

This is not trivial question. On one side, using PyString_GET_SIZE() with non-bytes object definitely is a bug. It is better to catch it earlier rather than hope on failing in the following code. On other side, adding a check for bytes can break existing user code that is passed now by accident. _PyBytes_Join() in 2.7 supports unicode objects.

I think that the fix should be backported, and the proper fix should allow bytes and unicode objects. But I left the decision on Benjamin.
History
Date User Action Args
2017-08-26 15:47:25serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, benjamin.peterson, veky, Oren Milman
2017-08-26 15:47:24serhiy.storchakasetmessageid: <1503762444.97.0.641883479173.issue31271@psf.upfronthosting.co.za>
2017-08-26 15:47:24serhiy.storchakalinkissue31271 messages
2017-08-26 15:47:24serhiy.storchakacreate