r""" >>> import io >>> read_stringnl_noescape_pair(io.BytesIO(b"Queue\nEmpty\njunk")) 'Queue Empty'
(f)
| 384 | """) |
| 385 | |
| 386 | def read_stringnl_noescape_pair(f): |
| 387 | r""" |
| 388 | >>> import io |
| 389 | >>> read_stringnl_noescape_pair(io.BytesIO(b"Queue\nEmpty\njunk")) |
| 390 | 'Queue Empty' |
| 391 | """ |
| 392 | |
| 393 | return "%s %s" % (read_stringnl_noescape(f), read_stringnl_noescape(f)) |
| 394 | |
| 395 | stringnl_noescape_pair = ArgumentDescriptor( |
| 396 | name='stringnl_noescape_pair', |
nothing calls this directly
no test coverage detected
searching dependent graphs…