Codebase list python-repoze.tm2 / upstream/2.2.0 TODO.txt
upstream/2.2.0

Tree @upstream/2.2.0 (Download .tar.gz)

TODO.txt @upstream/2.2.0raw · history · blame

Investigate using the absurd API for transaction synchronizers e.g.:

class RepozeTMSync:
    def beforeCompletion(self, transaction):
        for thing in self.before:
            thing()

    def afterCompletion(self, transaction):
        for thing in self.after:
            thing()