We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7ff8e commit afa51efCopy full SHA for afa51ef
Lib/xml/dom/minidom.py
@@ -221,7 +221,12 @@ def normalize(self):
221
self.childNodes[:] = L
222
223
def cloneNode(self, deep):
224
- """The Node.cloneNode() method returns a duplicate of the node."""
+ """Create and return a duplicate of this node.
225
+
226
+ Args:
227
+ deep (bool): If True, recursively clone this node's descendants.
228
+ If False, clone only this node.
229
+ """
230
return _clone_node(self, deep, self.ownerDocument or self)
231
232
def isSupported(self, feature, version):
0 commit comments