Ticket #26233: 26233.diff

File 26233.diff, 425 bytes (added by Luc Saffre, 8 years ago)

output of git diff

  • django/db/models/query_utils.py

    diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py
    index 1cd4e57..88d3dc9 100644
    a b class QueryWrapper(object):  
    4545class Q(tree.Node):
    4646    """
    4747    Encapsulates filters as objects that can then be combined logically (using
    48     & and |).
     48    `&` and `|`).
    4949    """
    5050    # Connection types
    5151    AND = 'AND'
Back to Top