diff options
Diffstat (limited to 'wsgitools/scgi')
-rw-r--r-- | wsgitools/scgi/__init__.py | 2 | ||||
-rw-r--r-- | wsgitools/scgi/forkpool.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/wsgitools/scgi/__init__.py b/wsgitools/scgi/__init__.py index 4e60b74..f651264 100644 --- a/wsgitools/scgi/__init__.py +++ b/wsgitools/scgi/__init__.py @@ -7,7 +7,7 @@ except ImportError: else: have_sendfile = True -class FileWrapper: +class FileWrapper(object): """ @ivar offset: Initially 0. Becomes -1 when reading using next and becomes positive when reading using next. In the latter case it diff --git a/wsgitools/scgi/forkpool.py b/wsgitools/scgi/forkpool.py index 1f4cdee..7df1575 100644 --- a/wsgitools/scgi/forkpool.py +++ b/wsgitools/scgi/forkpool.py @@ -28,7 +28,7 @@ else: __all__ = [] -class SocketFileWrapper: +class SocketFileWrapper(object): """Wraps a socket to a wsgi-compliant file-like object.""" def __init__(self, sock, toread): """@param sock: is a C{socket.socket()}""" @@ -168,10 +168,10 @@ class SocketFileWrapper: self.write(line) __all__.append("SCGIServer") -class SCGIServer: +class SCGIServer(object): """Usage: create an L{SCGIServer} object and invoke the run method which will then turn this process into an scgi server.""" - class WorkerState: + class WorkerState(object): """state: 0 means idle and 1 means working. These values are also sent as strings '0' and '1' over the socket.""" def __init__(self, pid, sock, state): |