Codebase list python-repoze.tm2 / debian/1.0b2-1 TODO.txt
debian/1.0b2-1

Tree @debian/1.0b2-1 (Download .tar.gz)

TODO.txt @debian/1.0b2-1raw · 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()