Process the entire queue with no breaks.
(self)
| 424 | self._dequeue() |
| 425 | |
| 426 | def process_entire_queue(self): |
| 427 | """ Process the entire queue with no breaks. |
| 428 | |
| 429 | """ |
| 430 | while self.queue: |
| 431 | self._dequeue() |
| 432 | |
| 433 | |
| 434 | class Window(pyglet.window.Window): |