mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
Stopped setting BaseExpression.copied on copy().
Unused since its introduction in f59fd15c49
.
This commit is contained in:
parent
160969d970
commit
76236f0db2
@ -292,9 +292,7 @@ class BaseExpression:
|
||||
return clone
|
||||
|
||||
def copy(self):
|
||||
c = copy.copy(self)
|
||||
c.copied = True
|
||||
return c
|
||||
return copy.copy(self)
|
||||
|
||||
def get_group_by_cols(self):
|
||||
if not self.contains_aggregate:
|
||||
|
Loading…
Reference in New Issue
Block a user