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 serhiy.storchaka
Date 2017-01-19.17:31:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484847068.03.0.460461228187.issue29327@psf.upfronthosting.co.za>
In-reply-to
Content
In Python 3.6:

>>> sorted(iterable=[])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SystemError: Objects/tupleobject.c:81: bad argument to internal function

In Python 3.5 and 2.7:

>>> sorted(iterable=[])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'iterable' is an invalid keyword argument for this function
History
Date User Action Args
2017-01-19 17:31:08serhiy.storchakasetrecipients: + serhiy.storchaka
2017-01-19 17:31:08serhiy.storchakasetmessageid: <1484847068.03.0.460461228187.issue29327@psf.upfronthosting.co.za>
2017-01-19 17:31:07serhiy.storchakalinkissue29327 messages
2017-01-19 17:31:07serhiy.storchakacreate