Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/request.py @ 3963:ba45041827a2
remove various unused import
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 25 Dec 2006 13:37:00 +0100 |
parents | abaee83ce0a6 |
children | ca639faa38a2 |
comparison
equal
deleted
inserted
replaced
3962:2b8825c94c5a | 3963:ba45041827a2 |
---|---|
4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
5 # | 5 # |
6 # This software may be used and distributed according to the terms | 6 # This software may be used and distributed according to the terms |
7 # of the GNU General Public License, incorporated herein by reference. | 7 # of the GNU General Public License, incorporated herein by reference. |
8 | 8 |
9 import socket, sys, cgi, os, errno | 9 import socket, cgi, errno |
10 from mercurial.i18n import gettext as _ | 10 from mercurial.i18n import gettext as _ |
11 | 11 |
12 class wsgiapplication(object): | 12 class wsgiapplication(object): |
13 def __init__(self, destmaker): | 13 def __init__(self, destmaker): |
14 self.destmaker = destmaker | 14 self.destmaker = destmaker |