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 rhettinger, serhiy.storchaka, vstinner
Date 2017-01-20.06:04:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <10609079.RnFeg9HAVi@raxxla>
In-reply-to <1484865298.19.0.384278619782.issue29327@psf.upfronthosting.co.za>
Content
> While Python 3.5 doesn't crash, I consider that it has also the bug. So I
> added Python 3.5 in Versions.

The patch uses new feature of 3.6 -- supporting positional-only parameters in 
PyArg_ParseTupleAndKeywords()  (see issue26282). Since passing an iterable as 
a keyword argument never worked, it is safe to make the first parameter 
positional-only.

Actually I think that argument parsing code of sorted() and list.sort() can be 
simplified, but this is separate issue. I tried to make the bugfix patch simple.
History
Date User Action Args
2017-01-20 06:04:20serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, vstinner
2017-01-20 06:04:20serhiy.storchakalinkissue29327 messages
2017-01-20 06:04:19serhiy.storchakacreate