(self, key: str)
| 298 | yield vals[0] |
| 299 | |
| 300 | def discard(self, key: str) -> None: |
| 301 | try: |
| 302 | del self[key] |
| 303 | except KeyError: |
| 304 | pass |
| 305 | |
| 306 | def add(self, key: str, val: str, *, combine: bool = False) -> None: |
| 307 | """Adds a (name, value) pair, doesn't overwrite the value if it already |
no outgoing calls