Codebase list python-repoze.tm2 / dc2e445b-46b6-40b4-96e3-f1cbec2bf243/main TODO.txt
dc2e445b-46b6-40b4-96e3-f1cbec2bf243/main

Tree @dc2e445b-46b6-40b4-96e3-f1cbec2bf243/main (Download .tar.gz)

TODO.txt @dc2e445b-46b6-40b4-96e3-f1cbec2bf243/mainraw · 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()