MCPcopy Index your code
hub / github.com/python/cpython / read_stringnl_noescape_pair

Function read_stringnl_noescape_pair

Lib/pickletools.py:386–393  ·  view source on GitHub ↗

r""" >>> import io >>> read_stringnl_noescape_pair(io.BytesIO(b"Queue\nEmpty\njunk")) 'Queue Empty'

(f)

Source from the content-addressed store, hash-verified

384 """)
385
386def 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
395stringnl_noescape_pair = ArgumentDescriptor(
396 name='stringnl_noescape_pair',

Callers

nothing calls this directly

Calls 1

read_stringnl_noescapeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…