Exposing Darcs Repository with Python

I use Darcs distributed VCS for all the projects that I work alone on. I have ssh clients installed on all the computers I use and I have always a remote SSH server that I can use as one central server. Darcs works very well over SSH. Darcs also works well over HTTP. I don’t have always access to Apache configuration files and I do want to sometimes expose a repository or two via HTTP. Just another practical use for the Python one line webserver
[PYTHON]
python -c “from SimpleHTTPServer import test; test()”
[/PYTHON]