Re: [SQLObject] Antwort:Re: Creating more sqlobjects in _create()

2007-07-06 Thread Oleg Broytmann
On Fri, Jul 06, 2007 at 02:46:38PM +0200, [EMAIL PROTECTED] wrote: > I think I found the cause of my deadlock, which is (if I'm right that is), > located in main.py:912: > > val = cache.get(id, cls) > if val is None: > try: > val = cls(_SO_fetch_no_creat

[SQLObject] Antwort:Re: Creating more sqlobjects in _create()

2007-07-06 Thread bernhard . maeder
Hi all I think I found the cause of my deadlock, which is (if I'm right that is), located in main.py:912: val = cache.get(id, cls) if val is None: try: val = cls(_SO_fetch_no_create=1) We reach this place e.g. by resolving a foreign key through _SO_fo