(self)
| 443 | |
| 444 | @property |
| 445 | def addr_spec(self): |
| 446 | for x in self: |
| 447 | if x.token_type == 'addr-spec': |
| 448 | if x.local_part: |
| 449 | return x.addr_spec |
| 450 | else: |
| 451 | return quote_string(x.local_part) + x.addr_spec |
| 452 | else: |
| 453 | return '<>' |
| 454 | |
| 455 | |
| 456 | class ObsRoute(TokenList): |
nothing calls this directly
no test coverage detected