Mercurial > p > roundup > code
comparison roundup/cgi/client.py @ 4046:48be910ebda1
Fix typo in last checkin.
| author | Stefan Seefeld <stefan@seefeld.name> |
|---|---|
| date | Tue, 17 Feb 2009 02:38:08 +0000 |
| parents | 82213b1971b4 |
| children | e70643990e9c |
comparison
equal
deleted
inserted
replaced
| 4045:82213b1971b4 | 4046:48be910ebda1 |
|---|---|
| 1 """WWW request handler (also used in the stand-alone server). | 1 """WWW request handler (also used in the stand-alone server). |
| 2 """ | 2 """ |
| 3 __docformat__ = 'restructuredtext' | 3 __docformat__ = 'restructuredtext' |
| 4 | 4 |
| 5 import base64, binascii, cgi, codecs, mimetypes, os | 5 import base64, binascii, cgi, codecs, mimetypes, os |
| 6 import quopri random, re, rfc822, stat, sys, time, urllib, urlparse | 6 import quopri, random, re, rfc822, stat, sys, time, urllib, urlparse |
| 7 import Cookie, socket, errno | 7 import Cookie, socket, errno |
| 8 from Cookie import CookieError, BaseCookie, SimpleCookie | 8 from Cookie import CookieError, BaseCookie, SimpleCookie |
| 9 from cStringIO import StringIO | 9 from cStringIO import StringIO |
| 10 | 10 |
| 11 from roundup import roundupdb, date, hyperdb, password | 11 from roundup import roundupdb, date, hyperdb, password |
