Load a blit background; may be None at any time.
(self)
| 165 | self.canvas._blit_backgrounds[self._blit_background_id] = background |
| 166 | |
| 167 | def _load_blit_background(self): |
| 168 | """Load a blit background; may be None at any time.""" |
| 169 | return self.canvas._blit_backgrounds.get(self._blit_background_id) |
| 170 | |
| 171 | |
| 172 | def _call_with_reparented_event(func): |
no test coverage detected