The newforms tests fail under Python2.3:
======================================================================
ERROR: Doctest: regressiontests.forms.tests
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/jacob/Projects/Django/django/test/doctest.py", line 2150, in runTest
failures, tries = runner.run(
File "/Users/jacob/Projects/Django/django/test/doctest.py", line 1379, in run
return self.__run(test, compileflags, out)
File "/Users/jacob/Projects/Django/django/test/doctest.py", line 1267, in __run
got += _exception_traceback(exc_info)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 249: ordinal not in range(128)
----------------------------------------------------------------------
I suspect this is either related to something about Python 2.3's unicode handling (as suggested in #3396), or perhaps some difference in how doctest operates under Python2.3. I can't really figure it out, though...