(self)
| 285 | heappush(self.queue, element) |
| 286 | |
| 287 | def pop_binding(self): |
| 288 | priority, binding = heappop(self.queue) |
| 289 | #return binding |
| 290 | return priority, binding |
| 291 | |
| 292 | def peak_binding(self): |
| 293 | if not self.queue: |
no outgoing calls
no test coverage detected