(self, using=None, hints=None)
| 134 | BaseManager.creation_counter += 1 |
| 135 | |
| 136 | def db_manager(self, using=None, hints=None): |
| 137 | obj = copy.copy(self) |
| 138 | obj._db = using or self._db |
| 139 | obj._hints = hints or self._hints |
| 140 | return obj |
| 141 | |
| 142 | @property |
| 143 | def db(self): |