From 8f081641f5436947c3011f56eae94bfac8165c45 Mon Sep 17 00:00:00 2001 From: jlgijsbers Date: Wed, 10 Sep 2003 13:04:05 +0000 Subject: [PATCH] We need a stable set of chars to be able to match the subject lines of registration confirmation. Py2.1's string.letters also depends on locales, so we can't use it. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1874 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 306a379..efe59c4 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.138 2003-09-08 21:08:18 jlgijsbers Exp $ +# $Id: client.py,v 1.139 2003-09-10 13:04:05 jlgijsbers Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -6,7 +6,7 @@ WWW request handler (also used in the stand-alone server). import os, os.path, cgi, StringIO, urlparse, re, traceback, mimetypes, urllib import binascii, Cookie, time, random, MimeWriter, smtplib, socket, quopri -import stat, rfc822, string +import stat, rfc822 from roundup import roundupdb, date, hyperdb, password, token, rcsv from roundup.i18n import _ @@ -29,11 +29,7 @@ class NotModified(HTTPException): pass # used by a couple of routines -if hasattr(string, 'ascii_letters'): - chars = string.ascii_letters+string.digits -else: - # python2.1 doesn't have ascii_letters - chars = string.letters+string.digits +chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' # XXX actually _use_ FormError class FormError(ValueError): -- 2.30.2