On Jul 9, 2006, at 9:55 AM, Charles Duffy wrote: > > Hrm. I'll need to go back and look into it some -- when dmiller's > approach made the issue I was having go away, I pretty much stopped > looking into *why* that issue was happening.
were you overriding things with SessionContext ? I notice you had some probs with the "current" property on SessionContext, which I notice is set up in a non-polymorphic way, i.e.: current = property(get_current, set_current, del_current) i often set those up like this: current = property(lambda s:s.get_current(), lambda s:s.set_current (), lambda s:s.del_current()) which allows an overridden version of get_current() etc. to properly work with the property. just a thought... ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Sqlalchemy-users mailing list Sqlalchemy-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sqlalchemy-users