Hi!
Vinay Sajip wrote:
> If you want to have multiple processes logging to the same file, the
> standard Python logging module does not support interprocess
> synchronisation directly. However, it is fairly easy to set up the
> processes to log events to a socket, and a socket receiver can log
>
Hi,
I'm looking for a logging module to be used in a mod_python-powered
website. Python 2.3's logging package seems like a good fit, however
I'm not sure if it's completely safe to use it under high load. The
library documentation states that it's thread-safe, but what about
several forked apache
Jonas Meurer wrote:
"key1" isn't a valid parameter, to supply an empty key you would write
script.py?key1=&key2=foo
Then cgi.FieldStorage also includes key1.
great, it works. but is there no way to use single keywords as GET
argument?
You could manually parse the request string (CGI stores the requ
Hi,
Jonas Meurer wrote:
> if i request the script with script.py?key1&key2=foo, it will output:
> list keys with form.keys():
> key2
>
> any suggestions about how to make form.keys() contain the blank keys
> as well?
"key1" isn't a valid parameter, to supply an empty key you would write
script.