(self)
| 129 | _InfoFmtSize = struct.calcsize(_InfoFormat) |
| 130 | |
| 131 | def _register_lock(self): |
| 132 | self._lock.seek(self._LockedBytes, os.SEEK_SET) |
| 133 | self._lock.write(struct.pack(self._InfoFormat, os.getpid(), int(time.time()))) |
| 134 | |
| 135 | @property |
| 136 | def info(self): |