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())
])
Original issue reported on code.google.com by j1m...@gmail.com on 16 Sep 2013 at 4:54
Original issue reported on code.google.com by
j1m...@gmail.com
on 16 Sep 2013 at 4:54