- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
and wfile class variables (that the instance can also override). Change the default for rfile to buffered, because that seems to make a big difference in performance on some platforms. An anti-patch is needed to revert the effect in CGIHTTPServer.py which I'll check in momentarily.
-
- 09 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
server_bind() method calls setsockopt(SOL_SOCKET, SO_REUSEADDR, 1).
-
- 12 Eki, 1999 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 28 Tem, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
""" Here's a patch for the ForkingMixIn which will prevent the server from forking itself into the ground. Note: I've tested a very similar patch (subclassed ForkingMixIn) but not actually tested this one. As you might surmise, this was done out of necessity... If the maximum number of children are already running, block while waiting for a child to exit. """ (I added that last sentence as a comment to the code --GvR.)
-
- 17 Haz, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
may raise an exception (when there are no children). Reported by Andy Dustman.
-
- 15 Haz, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
and suggests putting a try/except around the get_request() call in handle_request(). (All in class TCPServer.)
-
- 01 Haz, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Here's the correct patch!
-
- 21 May, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I noticed while watching (with lsof) my forking SocketServer app running that I would get multiple processes listening to the socket. For the most part, this doesn't hurt things, but if you terminate the server, this can prevent it from restarting because it cannot bind to the port due to any running children which also have the socket open. The following one-liner fixes this.
-
- 30 Kas, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
threaded versions of Unix Server classes, using the ThreadingMixIn class: ThreadingUnixStreamServer ThreadingUnixDatagramServer
-
- 16 Kas, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Noted by Stefan Witzel.
-
- 16 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
credit for complaining about this and for testing these changes.
-
- 03 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
mostly for jpython.
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 29 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
first. Don't store the traceback as a local variable, to avoid circular references.
-
- 16 Tem, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 Eki, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
CGIHTTPServer.py when used with the POST command.
-
- 14 Şub, 1996 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 25 Ock, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Agu, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-