(self, file, connection)
| 26 | class DBUnpickler(pickle.Unpickler): |
| 27 | |
| 28 | def __init__(self, file, connection): |
| 29 | super().__init__(file) |
| 30 | self.connection = connection |
| 31 | |
| 32 | def persistent_load(self, pid): |
| 33 | # This method is invoked whenever a persistent ID is encountered. |