Changes between Initial Version and Version 1 of Ticket #24605, comment 6


Ignore:
Timestamp:
Apr 14, 2015, 1:17:09 PM (9 years ago)
Author:
priidukull

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24605, comment 6

    initial v1  
    4545
    4646{{{        super(Q, self).__init__(children=list(args) + list(six.iteritems(kwargs)))   }}}
     47
     48To make the test fail every time, change that line to
     49
     50{{{ super(Q, self).__init__(children=list(args) + sorted(list(six.iteritems(kwargs)))) }}}
Back to Top