Alexis,
I wanted to add that I'm testing your code.
Alexis Marrero wrote:
Let me know any comments on it and if you test it and fails please also
let me know. I don't have subversion account neither I don't know how to
use it thus this email.
You don't need an account to use subversion anonymously. Just install
subversion and grab a mod_python working copy.
$ svn co http://svn.apache.org/repos/asf/httpd/mod_python/trunk trunk
This will checkout a working copy into a new directory called "trunk" on
your machine. All of the following commands assume you are working in
trunk/.
Make your changes in your working copy, and then create a diff with:
$ svn diff lib/python/mod_python/util.py > your-patch.diff
The other commands which you'll find immediately useful are:
svn update - update your working copy from the repository
svn status - shows status of changes in your working copy
svn -u status - shows status of your copy against the repository
I've found "Version Control with Subverion" is an excellent resource and
is available online.
http://svnbook.red-bean.com/en/1.1/index.html
Jim