(cls, headers)
| 557 | |
| 558 | @classmethod |
| 559 | def to_wsgi_names(cls, headers): |
| 560 | return { |
| 561 | cls.to_wsgi_name(header_name): value |
| 562 | for header_name, value in headers.items() |
| 563 | } |
| 564 | |
| 565 | @classmethod |
| 566 | def to_asgi_names(cls, headers): |
no test coverage detected