Lines Matching refs:doc
190 'doc',
193 def __init__(self, name, n, reader, doc):
207 assert isinstance(doc, str)
208 self.doc = doc
228 doc="One-byte unsigned integer.")
249 doc="Two-byte unsigned integer, little-endian.")
270 doc="Four-byte signed integer, little-endian, 2's complement.")
291 doc="Four-byte unsigned integer, little-endian.")
312 doc="Eight-byte unsigned integer, little-endian.")
366 doc="""A newline-terminated string.
379 doc="""A newline-terminated string.
399 doc="""A pair of newline-terminated strings.
430 doc="""A counted string.
464 doc="""A counted string.
493 doc="""A counted bytes string.
527 doc="""A counted bytes string.
562 doc="""A counted bytes string.
597 doc="""A counted bytearray.
621 doc="""A newline-terminated Unicode string.
659 doc="""A counted Unicode string.
700 doc="""A counted Unicode string.
741 doc="""A counted Unicode string.
793 doc="""A newline-terminated decimal integer literal.
806 doc="""A newline-terminated decimal integer literal.
826 doc="""A newline-terminated decimal floating literal.
855 doc="""An 8-byte binary representation of a float, big-endian.
898 doc="""A binary long, little-endian, using 1-byte size.
932 doc="""A binary representation of a long, little-endian.
958 'doc',
961 def __init__(self, name, obtype, doc):
971 assert isinstance(doc, str)
972 self.doc = doc
981 doc="A Python integer object.")
986 doc="A Python integer or boolean object.")
991 doc="A Python boolean object.")
996 doc="A Python float object.")
1001 doc="A Python bytes or (Unicode) string object.")
1006 doc="A Python bytes object.")
1011 doc="A Python bytearray object.")
1016 doc="A Python (Unicode) string object.")
1021 doc="The Python None object.")
1026 doc="A Python tuple object.")
1031 doc="A Python list object.")
1036 doc="A Python dict object.")
1041 doc="A Python set object.")
1046 doc="A Python frozenset object.")
1051 doc="A Python buffer-like object.")
1056 doc="Any kind of object whatsoever.")
1061 doc="""'The mark' is a unique object.
1075 doc="""An object representing a contiguous slice of the stack.
1106 # the bytestream s, and arg.doc documents the format of the raw
1121 'doc',
1125 stack_before, stack_after, proto, doc):
1149 assert isinstance(doc, str)
1150 self.doc = doc
1163 doc="""Push an integer or bool.
1188 doc="""Push a four-byte signed integer.
1202 doc="""Push a one-byte unsigned integer.
1214 doc="""Push a two-byte unsigned integer.
1227 doc="""Push a long integer.
1245 doc="""Long integer using one-byte length.
1256 doc="""Long integer using found-byte length.
1269 doc="""Push a Python string object.
1285 doc="""Push a Python string object.
1302 doc="""Push a Python string object.
1321 doc="""Push a Python bytes object.
1334 doc="""Push a Python bytes object.
1347 doc="""Push a Python bytes object.
1362 doc="""Push a Python bytearray object.
1377 doc="Push an out-of-band buffer object."),
1385 doc="Make an out-of-band buffer object read-only."),
1395 doc="Push None on the stack."),
1406 doc="Push True onto the stack."),
1414 doc="Push False onto the stack."),
1424 doc="""Push a Python Unicode string object.
1437 doc="""Push a Python Unicode string object.
1450 doc="""Push a Python Unicode string object.
1463 doc="""Push a Python Unicode string object.
1478 doc="""Newline-terminated decimal float literal.
1498 doc="""Float stored in binary form, with 8 bytes of data.
1516 doc="Push an empty list."),
1524 doc="""Append an object to a list.
1538 doc="""Extend a list by a slice of stack objects.
1552 doc="""Build a list out of the topmost stack slice, after markobject.
1570 doc="Push an empty tuple."),
1578 doc="""Build a tuple out of the topmost stack slice, after markobject.
1594 doc="""Build a one-tuple out of the topmost item on the stack.
1609 doc="""Build a two-tuple out of the top two items on the stack.
1624 doc="""Build a three-tuple out of the top three items on the stack.
1641 doc="Push an empty dict."),
1649 doc="""Build a dict out of the topmost stack slice, after markobject.
1666 doc="""Add a key+value pair to an existing dict.
1680 doc="""Add an arbitrary number of key+value pairs to an existing dict.
1703 doc="Push an empty set."),
1711 doc="""Add an arbitrary number of items to an existing set.
1733 doc="""Build a frozenset out of the topmost slice, after markobject.
1751 doc="Discard the top stack item, shrinking the stack by one item."),
1759 doc="Push the top stack item onto the stack again, duplicating it."),
1767 doc="""Push markobject onto the stack.
1771 to work on. See markobject.doc for more detail.
1780 doc="""Pop all the stack objects at and above the topmost markobject.
1796 doc="""Read an object from the memo and push it on the stack.
1809 doc="""Read an object from the memo and push it on the stack.
1821 doc="""Read an object from the memo and push it on the stack.
1833 doc="""Store the stack top into the memo. The stack is not popped.
1846 doc="""Store the stack top into the memo. The stack is not popped.
1858 doc="""Store the stack top into the memo. The stack is not popped.
1870 doc="""Store the stack top into the memo. The stack is not popped.
1885 doc="""Extension code.
1907 doc="""Extension code.
1918 doc="""Extension code.
1932 doc="""Push a global object (module.attr) on the stack.
1947 doc="""Push a global object (module.attr) on the stack.
1961 doc="""Push an object built from a callable and an argument tuple.
1990 doc="""Finish building an object, via __setstate__ or dict update.
2015 doc="""Build a class instance.
2065 doc="""Build a class instance.
2097 doc="""Build an object instance.
2112 doc="""Build an object instance.
2129 doc="""Protocol version indicator.
2141 doc="""Stop the unpickling machine.
2156 doc="""Indicate the beginning of a new frame.
2170 doc="""Push an object identified by a persistent ID.
2187 doc="""Push an object identified by a persistent ID.
2525 line += ' ' + opcode.doc.split('\n', 1)[0]