summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-08-24 18:57:22 (GMT)
committerCollin Winter <collinw@gmail.com>2007-08-24 18:57:22 (GMT)
commit70e79803fcc93e19808faa240a5f5e4854d0b077 (patch)
tree0e862edc9d0ae630f673988401418df2bbce59d6 /Lib/xml
parent75d38e992e9e3be428e51bcfe4bd5b201e953236 (diff)
downloadcpython-70e79803fcc93e19808faa240a5f5e4854d0b077.zip
cpython-70e79803fcc93e19808faa240a5f5e4854d0b077.tar.gz
cpython-70e79803fcc93e19808faa240a5f5e4854d0b077.tar.bz2
r698@Silves: collinwinter | 2007-08-24 10:57:15 -0700
Normalize raise statements in Lib/xml/.
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/dom/domreg.py4
-rw-r--r--Lib/xml/dom/expatbuilder.py8
-rw-r--r--Lib/xml/dom/minidom.py8
-rw-r--r--Lib/xml/sax/xmlreader.py8
4 files changed, 14 insertions, 14 deletions
diff --git a/Lib/xml/dom/domreg.py b/Lib/xml/dom/domreg.py
index cfd8231..f653563 100644
--- a/Lib/xml/dom/domreg.py
+++ b/Lib/xml/dom/domreg.py
@@ -77,7 +77,7 @@ def getDOMImplementation(name = None, features = ()):
if _good_enough(dom, features):
return dom
- raise ImportError,"no suitable DOM implementation found"
+ raise ImportError("no suitable DOM implementation found")
def _parse_feature_string(s):
features = []
@@ -87,7 +87,7 @@ def _parse_feature_string(s):
while i < length:
feature = parts[i]
if feature[0] in "0123456789":
- raise ValueError, "bad feature name: %r" % (feature,)
+ raise ValueError("bad feature name: %r" % (feature,))
i = i + 1
version = None
if i < length:
diff --git a/Lib/xml/dom/expatbuilder.py b/Lib/xml/dom/expatbuilder.py
index a2f8a33..fdb5598 100644
--- a/Lib/xml/dom/expatbuilder.py
+++ b/Lib/xml/dom/expatbuilder.py
@@ -476,8 +476,8 @@ class FilterVisibilityController(object):
if val == FILTER_INTERRUPT:
raise ParseEscape
if val not in _ALLOWED_FILTER_RETURNS:
- raise ValueError, \
- "startContainer() returned illegal value: " + repr(val)
+ raise ValueError(
+ "startContainer() returned illegal value: " + repr(val))
return val
else:
return FILTER_ACCEPT
@@ -496,8 +496,8 @@ class FilterVisibilityController(object):
# node is handled by the caller
return FILTER_REJECT
if val not in _ALLOWED_FILTER_RETURNS:
- raise ValueError, \
- "acceptNode() returned illegal value: " + repr(val)
+ raise ValueError(
+ "acceptNode() returned illegal value: " + repr(val))
return val
else:
return FILTER_ACCEPT
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py
index fb57d58..0386288 100644
--- a/Lib/xml/dom/minidom.py
+++ b/Lib/xml/dom/minidom.py
@@ -541,7 +541,7 @@ class NamedNodeMap(object):
node.value = value
else:
if not isinstance(value, Attr):
- raise TypeError, "value must be a string or Attr object"
+ raise TypeError("value must be a string or Attr object")
node = value
self.setNamedItem(node)
@@ -1177,7 +1177,7 @@ class ReadOnlySequentialNamedNodeMap(object):
else:
node = self.getNamedItem(name_or_tuple)
if node is None:
- raise KeyError, name_or_tuple
+ raise KeyError(name_or_tuple)
return node
def item(self, index):
@@ -1607,7 +1607,7 @@ class Document(Node, DocumentLS):
def createTextNode(self, data):
if not isinstance(data, StringTypes):
- raise TypeError, "node contents must be a string"
+ raise TypeError("node contents must be a string")
t = Text()
t.data = data
t.ownerDocument = self
@@ -1615,7 +1615,7 @@ class Document(Node, DocumentLS):
def createCDATASection(self, data):
if not isinstance(data, StringTypes):
- raise TypeError, "node contents must be a string"
+ raise TypeError("node contents must be a string")
c = CDATASection()
c.data = data
c.ownerDocument = self
diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py
index 4503315..6264ee3 100644
--- a/Lib/xml/sax/xmlreader.py
+++ b/Lib/xml/sax/xmlreader.py
@@ -295,12 +295,12 @@ class AttributesImpl:
def getNameByQName(self, name):
if name not in self._attrs:
- raise KeyError, name
+ raise KeyError(name)
return name
def getQNameByName(self, name):
if name not in self._attrs:
- raise KeyError, name
+ raise KeyError(name)
return name
def getNames(self):
@@ -350,14 +350,14 @@ class AttributesNSImpl(AttributesImpl):
if qname == name:
return self._attrs[nsname]
- raise KeyError, name
+ raise KeyError(name)
def getNameByQName(self, name):
for (nsname, qname) in self._qnames.items():
if qname == name:
return nsname
- raise KeyError, name
+ raise KeyError(name)
def getQNameByName(self, name):
return self._qnames[name]