mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Removed obsolete docstring from WhereNode.clone().
Node.subtree_parents was removed ind3f00bd570
. That commit also added Q.clone() which was identical to WhereNode.clone(), but lacked the docstring. Q.clone() was later removed inb454e2cbc9
.
This commit is contained in:
parent
769d7cce4a
commit
4f8bc75bc3
1 changed files with 0 additions and 5 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue