Thanks to visit codestin.com Credit goes to github.com
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 0399bd8 commit 2523977Copy full SHA for 2523977
1 file changed
Lib/xml/dom/minidom.py
@@ -218,6 +218,13 @@ def cloneNode(self, deep):
218
clone.appendChild(child.cloneNode(1))
219
return clone
220
221
+ # DOM Level 3 (Working Draft 2001-Jan-26)
222
+
223
+ def isSameNode(self, other):
224
+ return self is other
225
226
+ # minidom-specific API:
227
228
def unlink(self):
229
self.parentNode = None
230
for child in self.childNodes:
0 commit comments