Return a string representation of the Cookies object.
(self)
| 169 | return False |
| 170 | |
| 171 | def __repr__(self) -> str: |
| 172 | """Return a string representation of the Cookies object.""" |
| 173 | cookies_repr = ', '.join( |
| 174 | [f'<Cookie {cookie.name}={cookie.value} for {cookie.domain} />' for cookie in self.jar] |
| 175 | ) |
| 176 | |
| 177 | return f'<Cookies[{cookies_repr}]>' |
nothing calls this directly
no outgoing calls
no test coverage detected