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 michael.foord
Recipients kushal.das, michael.foord
Date 2014-04-16.16:37:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397666226.17.0.060483995874.issue21256@psf.upfronthosting.co.za>
In-reply-to
Content
Printing call args produces non-deterministic results, making them more or less useless in doctests.

kwargs_string = ', '.join([
        '%s=%r' % (key, value) for key, value in kwargs.items()
    ])

should be:

kwargs_string = ', '.join([
        '%s=%r' % (key, value) for key, value in sorted(kwargs.items())
    ])
History
Date User Action Args
2014-04-16 16:37:06michael.foordsetrecipients: + michael.foord, kushal.das
2014-04-16 16:37:06michael.foordsetmessageid: <1397666226.17.0.060483995874.issue21256@psf.upfronthosting.co.za>
2014-04-16 16:37:06michael.foordlinkissue21256 messages
2014-04-16 16:37:05michael.foordcreate