Re: [Web-SIG] cgi.fieldstorage

2005-12-24 Thread tsoehnli
I found cgi library to be too bulky for cgi actually. Its load time was enought to double the processing time of my scripts. I changed that tho, by hand recoding most of everything, and removed certain things, like regular expressions, from the process, and replaced it with urllib's fast quote

[Web-SIG] Global Variables

2005-09-09 Thread tsoehnli
Hello all, I am working on an ongoing project, and recently merged all the different segments of the request into a single variable. To propogate that variable,across function calls, and imported modules, I had to pass it as a variable to each function. As is visible, this is a very re