(self, code)
| 174 | def insert(self, index, code): |
| 175 | self.data.insert(index, code) |
| 176 | def append(self, code): |
| 177 | self.data.append(code) |
| 178 | def getwidth(self): |
| 179 | # determine the width (min, max) for this subpattern |
| 180 | if self.width is not None: |
no outgoing calls
no test coverage detected