(self, pos, item)
| 114 | append = push |
| 115 | |
| 116 | def insert(self, pos, item): |
| 117 | # ignore the position since it's not certain that it can preserve the |
| 118 | # heap invariant |
| 119 | self.push(item) |
| 120 | |
| 121 | def extend(self, other): |
| 122 | if self._key is not None: |