> I'll give it a go, but for someone who doesn't know about running 2to3
> etc, to make things a but more obvious can you add to your page a
> quick set of instructions as to what someone needs to do to try this
> out. Ie., what needs to be done after a checkout, does one apply patch
> and then install it with 2to3 running automatically, or is there some
> other voodoo that needs to be done?
From the patch/django point of view, it is really very simple. You
apply the patch, and then do
path-to-python3.1 setup.py install
No need to run 2to3; this is done behind the covers. The really tricky
part might be that you have to use python3.1, as the 2to3 version
shipped with 3.0 didn't include all of the necessary fixers (although
3.0.1 will).
I would recommend to try runserver first: your application might also
need porting, or might invoke parts of Django that I haven't ported.
Django apparently features a large variety of error reporting
scenarios, depending on where exactly in Django the error occurs.
If you run into problems, feel free to contact me.
Regards,
Martin