Duh. Instead of string.whitespace and string.digits, use isspace()

and isdigit() methods.
This commit is contained in:
Guido van Rossum 2001-01-02 20:36:32 +00:00
parent 2cba0f641f
commit 352ca8cbce
1 changed files with 5 additions and 6 deletions

View File

@ -57,7 +57,6 @@ There are also some utility functions here.
""" """
# Cleanup and extensions by Eric S. Raymond <esr@thyrsus.com> # Cleanup and extensions by Eric S. Raymond <esr@thyrsus.com>
import string
import time import time
@ -230,7 +229,7 @@ class Message:
for line in self.headers: for line in self.headers:
if line[:n].lower() == name: if line[:n].lower() == name:
hit = 1 hit = 1
elif line[:1] not in string.whitespace: elif not line[:1].isspace():
hit = 0 hit = 0
if hit: if hit:
list.append(line) list.append(line)
@ -249,7 +248,7 @@ class Message:
hit = 0 hit = 0
for line in self.headers: for line in self.headers:
if hit: if hit:
if line[:1] not in string.whitespace: if not line[:1].isspace():
break break
elif line[:n].lower() == name: elif line[:n].lower() == name:
hit = 1 hit = 1
@ -299,7 +298,7 @@ class Message:
current = '' current = ''
have_header = 0 have_header = 0
for s in self.getallmatchingheaders(name): for s in self.getallmatchingheaders(name):
if s[0] in string.whitespace: if s[0].isspace():
if current: if current:
current = "%s\n %s" % (current, s.strip()) current = "%s\n %s" % (current, s.strip())
else: else:
@ -413,7 +412,7 @@ class Message:
line = self.headers[i] line = self.headers[i]
if line[:n].lower() == name: if line[:n].lower() == name:
hit = 1 hit = 1
elif line[:1] not in string.whitespace: elif not line[:1].isspace():
hit = 0 hit = 0
if hit: if hit:
list.append(i) list.append(i)
@ -855,7 +854,7 @@ def parsedate_tz(data):
yy, tm = tm, yy yy, tm = tm, yy
if yy[-1] == ',': if yy[-1] == ',':
yy = yy[:-1] yy = yy[:-1]
if yy[0] not in string.digits: if not yy[0].isdigit():
yy, tz = tz, yy yy, tz = tz, yy
if tm[-1] == ',': if tm[-1] == ',':
tm = tm[:-1] tm = tm[:-1]