(self, key)
| 56 | return "<Strdispatch %s, %s>" % (self.strs, self.regexs) |
| 57 | |
| 58 | def s_matches(self, key): |
| 59 | if key not in self.strs: |
| 60 | return |
| 61 | for el in self.strs[key]: |
| 62 | yield el[1] |
| 63 | |
| 64 | def flat_matches(self, key): |
| 65 | """ Yield all 'value' targets, without priority """ |
no outgoing calls
no test coverage detected