diff options
author | Helmut Grohne <helmut@subdivi.de> | 2011-11-30 20:28:22 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2011-11-30 20:28:22 +0100 |
commit | 2c607a3b8e0584fa20ce38095c9158f623501cee (patch) | |
tree | 70ec95635fd1ec208c6961f669ce45fed112c302 /wsgitools/scgi/asynchronous.py | |
parent | 5b5e52f8d09674eb628cdf0770b9b9b101ca862e (diff) | |
download | wsgitools-2c607a3b8e0584fa20ce38095c9158f623501cee.tar.gz |
documentation update
* added a number of internal links (L{...})
* some fixes
* some additions
Diffstat (limited to 'wsgitools/scgi/asynchronous.py')
-rw-r--r-- | wsgitools/scgi/asynchronous.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/scgi/asynchronous.py b/wsgitools/scgi/asynchronous.py index e1dbcc6..6b69c73 100644 --- a/wsgitools/scgi/asynchronous.py +++ b/wsgitools/scgi/asynchronous.py @@ -218,8 +218,8 @@ class SCGIServer(asyncore.dispatcher): @type reusesocket: None or socket.socket @param reusesocket: If a socket is passed, do not create a socket. Instead use given socket as listen socket. The passed socket - must be set up for accepting tcp connections (i.e. AF_INET, - SOCK_STREAM with bind and listen called). + must be set up for accepting tcp connections (i.e. C{AF_INET}, + C{SOCK_STREAM} with bind and listen called). """ if reusesocket is None: asyncore.dispatcher.__init__(self) |