(self)
| 450 | |
| 451 | @property |
| 452 | def addr_spec(self): |
| 453 | for x in self: |
| 454 | if x.token_type == 'addr-spec': |
| 455 | if x.local_part: |
| 456 | return x.addr_spec |
| 457 | else: |
| 458 | return quote_string(x.local_part) + x.addr_spec |
| 459 | else: |
| 460 | return '<>' |
| 461 | |
| 462 | |
| 463 | class ObsRoute(TokenList): |
nothing calls this directly
no test coverage detected