diff options
author | Florent Guillaume <fg@nuxeo.com> | 2004-08-12 16:48:40 +0000 |
---|---|---|
committer | Florent Guillaume <fg@nuxeo.com> | 2004-08-12 16:48:40 +0000 |
commit | addd388ea5705ad45760d9acf955dba9c893c94f (patch) | |
tree | b9d2adda1a7054a0bf33093c638f4714463f03fc /talinterpreter.py | |
parent | 51c1df898bc66c25fb1fb027f110df99156e65c0 (diff) | |
download | zope-tal-addd388ea5705ad45760d9acf955dba9c893c94f.tar.gz |
Note a problem with bare except.
Diffstat (limited to 'talinterpreter.py')
-rw-r--r-- | talinterpreter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/talinterpreter.py b/talinterpreter.py index e7a29f6..7480934 100644 --- a/talinterpreter.py +++ b/talinterpreter.py @@ -830,6 +830,7 @@ class TALInterpreter(object): self._stream_write = stream.write try: self.interpret(block) + # TODO: this should not catch ZODB.POSException.ConflictError. except: exc = sys.exc_info()[1] self.restoreState(state) |