Re: Django tests failing under Python 2.3

2007-01-29 Thread Robert Myers
On 1/29/07, Andrew Durdin <[EMAIL PROTECTED]> wrote: > > > On Jan 29, 4:50 pm, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > > On 1/29/07 10:15 AM, Robert Myers wrote: > > > > > I'm seeing the same amount of errors on python 2.3.4, it appears the @ > > > decorator syntax is being used in the model

Re: Django tests failing under Python 2.3

2007-01-29 Thread Andrew Durdin
On Jan 29, 4:50 pm, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > On 1/29/07 10:15 AM, Robert Myers wrote: > > > I'm seeing the same amount of errors on python 2.3.4, it appears the @ > > decorator syntax is being used in the modeltests/test-client/views.py. And I was so used to decorators that

Re: Django tests failing under Python 2.3

2007-01-29 Thread Jacob Kaplan-Moss
On 1/29/07 10:15 AM, Robert Myers wrote: > I'm seeing the same amount of errors on python 2.3.4, it appears the @ > decorator syntax is being used in the modeltests/test-client/views.py. This > was introduced in python 2.4, I changed it to the old decorator syntax 'blah > = decorator(blah)' and st

Re: Django tests failing under Python 2.3

2007-01-29 Thread Robert Myers
On 1/28/07, Andrew Durdin <[EMAIL PROTECTED]> wrote: > > > I'm trying to run all the django tests under Python 2.3.5 (on OS X > 10.4.8), and there are lots of failures (see below). > My settings file for the test is just: > > DEBUG = True > > DATABASE_ENGINE = 'mysql' # 'postgresql', 'mys

Django tests failing under Python 2.3

2007-01-28 Thread Andrew Durdin
I'm trying to run all the django tests under Python 2.3.5 (on OS X 10.4.8), and there are lots of failures (see below). My settings file for the test is just: DEBUG = True DATABASE_ENGINE = 'mysql' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'. DATABASE_NAME = 'test'