That looks like something I would have done to reduce the refcount of the
servlet in case of circular references. Should be safe to remove now that
we can rely on garbage collection, as long as the transaction and servlet
cleanup still processes normally in case of an exception.
Jay
> -Orig
Transaction has the following method:
def setErrorOccurred(self, flag):
''' Invoked by the application if an exception is raised to the
application level. '''
self._errorOccurred = flag
self._servlet = None
I'm made a subtle change which