(self, key, default=None)
| 547 | return id(key) in self.context_objects |
| 548 | |
| 549 | def get_context_object(self, key, default=None): |
| 550 | return self.context_objects.get(id(key), default) |
| 551 | |
| 552 | def increase_depth(self, diff=1): |
| 553 | # Depth accounting is paired on the successful path only. |