Re: Import problem starting with r12977

2010-04-19 Thread Erik Stein
thanks for pointing this out. I attached a symptomatic patch to ticket #13366. best -- erik Am 17.04.2010 um 14:33 schrieb Ramiro Morales: > On Sat, Apr 17, 2010 at 4:38 AM, Erik Stein wrote: >> I'd would definetly consider this a bug in django, but I've no idea how to >> design a regressio

Re: Import problem starting with r12977

2010-04-17 Thread Ramiro Morales
On Sat, Apr 17, 2010 at 4:38 AM, Erik Stein wrote: > > I'm was digging around more, too, and finally i've set up a small test > environment with django (r12955), just an project with a single app: You meant r12995 here, right? > > django-admin.py startproject mytest > cd mytest > django-admin.

Re: Import problem starting with r12977

2010-04-17 Thread Erik Stein
I'm was digging around more, too, and finally i've set up a small test environment with django (r12955), just an project with a single app: django-admin.py startproject mytest cd mytest django-admin.py startapp blog INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.comments', #

Re: Import problem starting with r12977

2010-04-16 Thread Derek Hoy
On Sat, Apr 17, 2010 at 12:36 AM, Derek Hoy wrote: > > I'll dig around a bit more. The problems seemed to come from the same models.py that was shared across the projects. I moved a couple of imports and it seems fine with trunk (r12996). So it looks like it's the change in the error handling th

Re: Import problem starting with r12977

2010-04-16 Thread Derek Hoy
Strange, I had the same problem and rolling back to 12976 fixed it. But another project still failed. It worked when I rolled back to r12949. http://code.djangoproject.com/changeset/12950 is the first of a few that deal with app loading. It may be our projects had import errors that weren't being

Import problem starting with r12977

2010-04-16 Thread Erik Stein
Hello -- I hope that's the correct place to ask, else point me to django-users. Starting with changeset http://code.djangoproject.com/changeset/12977 (Fixed #13328 -- Added a getstate/setstate pair to fields so that callable default values aren't pickled. Thanks to bkonkle for