summaryrefslogtreecommitdiffstats
path: root/Lib/sgmllib.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-09 07:49:30 (GMT)
committerEric S. Raymond <esr@thyrsus.com>2001-02-09 07:49:30 (GMT)
commit1b645e8cd3b60792d6925971413754c3d5fc6cee (patch)
tree291f4c1da4525c0c2c7a972d2440d608c033a2c4 /Lib/sgmllib.py
parent38151ed6b895f5a9a2234eb962bac16c417dd1f4 (diff)
downloadcpython-1b645e8cd3b60792d6925971413754c3d5fc6cee.zip
cpython-1b645e8cd3b60792d6925971413754c3d5fc6cee.tar.gz
cpython-1b645e8cd3b60792d6925971413754c3d5fc6cee.tar.bz2
String method conversion.
Diffstat (limited to 'Lib/sgmllib.py')
-rw-r--r--Lib/sgmllib.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/sgmllib.py b/Lib/sgmllib.py
index dfbfe5c..9f4819c 100644
--- a/Lib/sgmllib.py
+++ b/Lib/sgmllib.py
@@ -227,7 +227,7 @@ class SGMLParser:
return -1
tag, data = match.group(1, 2)
self.__starttag_text = '<%s/' % tag
- tag = string.lower(tag)
+ tag = tag.lower()
k = match.end(0)
self.finish_shorttag(tag, data)
self.__starttag_text = rawdata[start_pos:match.end(1) + 1]
@@ -248,7 +248,7 @@ class SGMLParser:
if not match:
raise RuntimeError, 'unexpected call to parse_starttag'
k = match.end(0)
- tag = string.lower(rawdata[i+1:k])
+ tag = rawdata[i+1:k].lower()
self.lasttag = tag
while k < j:
match = attrfind.match(rawdata, k)
@@ -259,7 +259,7 @@ class SGMLParser:
elif attrvalue[:1] == '\'' == attrvalue[-1:] or \
attrvalue[:1] == '"' == attrvalue[-1:]:
attrvalue = attrvalue[1:-1]
- attrs.append((string.lower(attrname), attrvalue))
+ attrs.append((attrname.lower(), attrvalue))
k = match.end(0)
if rawdata[j] == '>':
j = j+1
@@ -274,7 +274,7 @@ class SGMLParser:
if not match:
return -1
j = match.start(0)
- tag = string.lower(string.strip(rawdata[i+2:j]))
+ tag = rawdata[i+2:j].strip().lower()
if rawdata[j] == '>':
j = j+1
self.finish_endtag(tag)
@@ -353,7 +353,7 @@ class SGMLParser:
# Example -- handle character reference, no need to override
def handle_charref(self, name):
try:
- n = string.atoi(name)
+ n = int(name)
except string.atoi_error:
self.unknown_charref(name)
return