mirror of
https://github.com/python/cpython.git
synced 2025-10-13 18:33:34 +00:00
Re-indent.
This commit is contained in:
parent
d5fb58f1e3
commit
52ce0d0837
3 changed files with 14 additions and 14 deletions
|
@ -60,7 +60,7 @@ INVALID_ACCESS_ERR = 15
|
||||||
class DOMException(Exception):
|
class DOMException(Exception):
|
||||||
"""Abstract base class for DOM exceptions.
|
"""Abstract base class for DOM exceptions.
|
||||||
Exceptions with specific codes are specializations of this class."""
|
Exceptions with specific codes are specializations of this class."""
|
||||||
|
|
||||||
def __init__(self, *args, **kw):
|
def __init__(self, *args, **kw):
|
||||||
if self.__class__ is DOMException:
|
if self.__class__ is DOMException:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
|
|
|
@ -38,7 +38,7 @@ class Node(_Node):
|
||||||
_makeParentNodes = 1
|
_makeParentNodes = 1
|
||||||
debug = None
|
debug = None
|
||||||
childNodeTypes = ()
|
childNodeTypes = ()
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.childNodes = []
|
self.childNodes = []
|
||||||
self.parentNode = None
|
self.parentNode = None
|
||||||
|
@ -168,9 +168,9 @@ class Node(_Node):
|
||||||
if oldChild.nextSibling is not None:
|
if oldChild.nextSibling is not None:
|
||||||
oldChild.nextSibling.previousSibling = oldChild.previousSibling
|
oldChild.nextSibling.previousSibling = oldChild.previousSibling
|
||||||
if oldChild.previousSibling is not None:
|
if oldChild.previousSibling is not None:
|
||||||
oldChild.previousSibling.nextSibling = oldChild.nextSibling
|
oldChild.previousSibling.nextSibling = oldChild.nextSibling
|
||||||
oldChild.nextSibling = oldChild.previousSibling = None
|
oldChild.nextSibling = oldChild.previousSibling = None
|
||||||
|
|
||||||
if self._makeParentNodes:
|
if self._makeParentNodes:
|
||||||
oldChild.parentNode = None
|
oldChild.parentNode = None
|
||||||
return oldChild
|
return oldChild
|
||||||
|
@ -261,7 +261,7 @@ class Attr(Node):
|
||||||
attributes = None
|
attributes = None
|
||||||
ownerElement = None
|
ownerElement = None
|
||||||
childNodeTypes = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)
|
childNodeTypes = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)
|
||||||
|
|
||||||
def __init__(self, qName, namespaceURI="", localName=None, prefix=None):
|
def __init__(self, qName, namespaceURI="", localName=None, prefix=None):
|
||||||
# skip setattr for performance
|
# skip setattr for performance
|
||||||
d = self.__dict__
|
d = self.__dict__
|
||||||
|
@ -391,7 +391,7 @@ class Element(Node):
|
||||||
childNodeTypes = (Node.ELEMENT_NODE, Node.PROCESSING_INSTRUCTION_NODE,
|
childNodeTypes = (Node.ELEMENT_NODE, Node.PROCESSING_INSTRUCTION_NODE,
|
||||||
Node.COMMENT_NODE, Node.TEXT_NODE,
|
Node.COMMENT_NODE, Node.TEXT_NODE,
|
||||||
Node.CDATA_SECTION_NODE, Node.ENTITY_REFERENCE_NODE)
|
Node.CDATA_SECTION_NODE, Node.ENTITY_REFERENCE_NODE)
|
||||||
|
|
||||||
def __init__(self, tagName, namespaceURI="", prefix="",
|
def __init__(self, tagName, namespaceURI="", prefix="",
|
||||||
localName=None):
|
localName=None):
|
||||||
Node.__init__(self)
|
Node.__init__(self)
|
||||||
|
@ -486,10 +486,10 @@ class Element(Node):
|
||||||
|
|
||||||
def hasAttribute(self, name):
|
def hasAttribute(self, name):
|
||||||
return self._attrs.has_key(name)
|
return self._attrs.has_key(name)
|
||||||
|
|
||||||
def hasAttributeNS(self, namespaceURI, localName):
|
def hasAttributeNS(self, namespaceURI, localName):
|
||||||
return self._attrsNS.has_key((namespaceURI, localName))
|
return self._attrsNS.has_key((namespaceURI, localName))
|
||||||
|
|
||||||
def getElementsByTagName(self, name):
|
def getElementsByTagName(self, name):
|
||||||
return _getElementsByTagNameHelper(self, name, [])
|
return _getElementsByTagNameHelper(self, name, [])
|
||||||
|
|
||||||
|
@ -526,7 +526,7 @@ class Comment(Node):
|
||||||
nodeName = "#comment"
|
nodeName = "#comment"
|
||||||
attributes = None
|
attributes = None
|
||||||
childNodeTypes = ()
|
childNodeTypes = ()
|
||||||
|
|
||||||
def __init__(self, data):
|
def __init__(self, data):
|
||||||
Node.__init__(self)
|
Node.__init__(self)
|
||||||
self.data = self.nodeValue = data
|
self.data = self.nodeValue = data
|
||||||
|
@ -538,7 +538,7 @@ class ProcessingInstruction(Node):
|
||||||
nodeType = Node.PROCESSING_INSTRUCTION_NODE
|
nodeType = Node.PROCESSING_INSTRUCTION_NODE
|
||||||
attributes = None
|
attributes = None
|
||||||
childNodeTypes = ()
|
childNodeTypes = ()
|
||||||
|
|
||||||
def __init__(self, target, data):
|
def __init__(self, target, data):
|
||||||
Node.__init__(self)
|
Node.__init__(self)
|
||||||
self.target = self.nodeName = target
|
self.target = self.nodeName = target
|
||||||
|
@ -552,7 +552,7 @@ class Text(Node):
|
||||||
nodeName = "#text"
|
nodeName = "#text"
|
||||||
attributes = None
|
attributes = None
|
||||||
childNodeTypes = ()
|
childNodeTypes = ()
|
||||||
|
|
||||||
def __init__(self, data):
|
def __init__(self, data):
|
||||||
if type(data) not in _StringTypes:
|
if type(data) not in _StringTypes:
|
||||||
raise TypeError, "node contents must be a string"
|
raise TypeError, "node contents must be a string"
|
||||||
|
@ -670,7 +670,7 @@ class Document(Node):
|
||||||
oldChild.parentNode = None
|
oldChild.parentNode = None
|
||||||
if self.documentElement is oldChild:
|
if self.documentElement is oldChild:
|
||||||
self.documentElement = None
|
self.documentElement = None
|
||||||
|
|
||||||
return oldChild
|
return oldChild
|
||||||
|
|
||||||
def _get_documentElement(self):
|
def _get_documentElement(self):
|
||||||
|
|
|
@ -36,7 +36,7 @@ class PullDOM(xml.sax.ContentHandler):
|
||||||
|
|
||||||
def pop(self):
|
def pop(self):
|
||||||
result = self.elementStack[-1]
|
result = self.elementStack[-1]
|
||||||
del self.elementStack[-1]
|
del self.elementStack[-1]
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def setDocumentLocator(self, locator):
|
def setDocumentLocator(self, locator):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue