Returns ``True`` if the boundary was reached or ``False`` otherwise. :rtype: bool
(self)
| 425 | return parse_qsl(data.rstrip().decode(encoding), encoding=encoding) |
| 426 | |
| 427 | def at_eof(self): |
| 428 | """Returns ``True`` if the boundary was reached or |
| 429 | ``False`` otherwise. |
| 430 | |
| 431 | :rtype: bool |
| 432 | """ |
| 433 | return self._at_eof |
| 434 | |
| 435 | def decode(self, data): |
| 436 | """Decodes data according the specified `Content-Encoding` |
no outgoing calls