I ran into two minor problems while playing with djspeedcenter.djangy.com:
time.clock()'s precision is very low on 32-bit Ubuntu - only a hundredth of a second - and that caused division-by-zero errors in many places. I used timeit.default_timer which uses time.clock() on Windows where it's more accurate and time.time() on Unix.
setup.py didn't install the benchmarks directory - I believe this may fix #1 but the ticket's a bit vague.
djangobench's l10n_render benchmark crashes under 1.3 because it doesn't define wsgi.input when initialize its WSGIRequest.
I ran into two minor problems while playing with djspeedcenter.djangy.com:
wsgi.input
when initialize itsWSGIRequest
.