Changes between Initial Version and Version 1 of Ticket #21760, comment 11


Ignore:
Timestamp:
Apr 10, 2014, 12:52:10 AM (10 years ago)
Author:
loic84

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21760, comment 11

    initial v1  
    77@valtron2000, would you mind updating the patch?
    88
    9 - The "FIXME" comment would have to be updated to explain this the new case with a reference to this ticket.
    10 - The current test is pretty fragile, could you rather check in QS.query if there is a join?
     9- The "FIXME" comment would have to be updated to explain this new case with a reference to this ticket.
     10- The current test is pretty fragile, could you rather check in QS.query if there is a join? (e.g. https://gist.github.com/10345520)
     11- Code needs to be compatible with PY3, use `range` instead of `xrange`, or import it from `six` if you really want `xrange`.
     12- The changes **inside** the `if`, do they do anything differently or is it just a cleanup? If it's just a cleanup, only fix the `if` **condition**, and not the **implementation**. Because right now it's pretty hard to see where the problem was from.
    1113
    1214Feel free to open a PR on github.
     15
     16**Edit: Added a couple more things to the patch review.**
Back to Top