[sqlalchemy] Problem:maximum recursion depth exceeded - Ticket #1081

2009-08-18 Thread Marin
I reported the bug a year ago. It seems nobody is interested in fixing it. So, this is my first try, but i don't know how to use the regression test to see if it is correct. Can anybody help me? unitofwork.py: class UOWExecutor(object): Encapsulates the execution traversal of a

[sqlalchemy] Problem:maximum recursion depth exceeded

2008-06-18 Thread Marin
I get this error when i try to execute the folowing code (Test, Section, Question, Answer are mepped tables): test = Test() section = Section() section.Test=test for i in range(60): q=Question() q.Section=section for j in range(6) a = Answer() a.Question = q