mirror of
https://github.com/django/django.git
synced 2025-08-02 18:13:02 +00:00
For another day
This commit is contained in:
parent
21a1fddcc4
commit
7283c21173
1 changed files with 3 additions and 4 deletions
|
@ -15,10 +15,9 @@ class ExpressionNode(tree.Node):
|
|||
MUL = '*'
|
||||
DIV = '/'
|
||||
POW = '^'
|
||||
# This is a quoted % operator - it is quoted
|
||||
# because it can be used in strings that also
|
||||
# have parameter substitution.
|
||||
MOD = '%%'
|
||||
MOD = '%%' # This is a quoted % operator - it is quoted
|
||||
# because it can be used in strings that also
|
||||
# have parameter substitution.
|
||||
|
||||
# Bitwise operators - note that these are generated by .bitand()
|
||||
# and .bitor(), the '&' and '|' are reserved for boolean operator
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue