diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index 8e3ad74d65..dbfd9a02a4 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -171,11 +171,6 @@ class WhereNode(tree.Node): self.children[pos] = child.relabeled_clone(change_map) def clone(self): - """ - Create a clone of the tree. Must only be called on root nodes (nodes - with empty subtree_parents). Childs must be either (Constraint, lookup, - value) tuples, or objects supporting .clone(). - """ clone = self.__class__._new_instance( children=None, connector=self.connector,