Lines Matching refs:doc

193     def __init__(self, name, n, reader, doc):  argument
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.
586 doc="""A newline-terminated Unicode string.
624 doc="""A counted Unicode string.
665 doc="""A counted Unicode string.
706 doc="""A counted Unicode string.
758 doc="""A newline-terminated decimal integer literal.
771 doc="""A newline-terminated decimal integer literal.
791 doc="""A newline-terminated decimal floating literal.
820 doc="""An 8-byte binary representation of a float, big-endian.
863 doc="""A binary long, little-endian, using 1-byte size.
897 doc="""A binary representation of a long, little-endian.
926 def __init__(self, name, obtype, doc): argument
936 assert isinstance(doc, str)
937 self.doc = doc
946 doc="A Python integer object.")
951 doc="A Python integer or boolean object.")
956 doc="A Python boolean object.")
961 doc="A Python float object.")
966 doc="A Python bytes or (Unicode) string object.")
971 doc="A Python bytes object.")
976 doc="A Python (Unicode) string object.")
981 doc="The Python None object.")
986 doc="A Python tuple object.")
991 doc="A Python list object.")
996 doc="A Python dict object.")
1001 doc="A Python set object.")
1006 doc="A Python frozenset object.")
1011 doc="Any kind of object whatsoever.")
1016 doc="""'The mark' is a unique object.
1030 doc="""An object representing a contiguous slice of the stack.
1080 stack_before, stack_after, proto, doc): argument
1104 assert isinstance(doc, str)
1105 self.doc = doc
1118 doc="""Push an integer or bool.
1143 doc="""Push a four-byte signed integer.
1157 doc="""Push a one-byte unsigned integer.
1169 doc="""Push a two-byte unsigned integer.
1182 doc="""Push a long integer.
1200 doc="""Long integer using one-byte length.
1211 doc="""Long integer using found-byte length.
1224 doc="""Push a Python string object.
1240 doc="""Push a Python string object.
1257 doc="""Push a Python string object.
1276 doc="""Push a Python bytes object.
1289 doc="""Push a Python bytes object.
1302 doc="""Push a Python bytes object.
1317 doc="Push None on the stack."),
1328 doc="Push True onto the stack."),
1336 doc="Push False onto the stack."),
1346 doc="""Push a Python Unicode string object.
1359 doc="""Push a Python Unicode string object.
1372 doc="""Push a Python Unicode string object.
1385 doc="""Push a Python Unicode string object.
1400 doc="""Newline-terminated decimal float literal.
1420 doc="""Float stored in binary form, with 8 bytes of data.
1438 doc="Push an empty list."),
1446 doc="""Append an object to a list.
1460 doc="""Extend a list by a slice of stack objects.
1474 doc="""Build a list out of the topmost stack slice, after markobject.
1492 doc="Push an empty tuple."),
1500 doc="""Build a tuple out of the topmost stack slice, after markobject.
1516 doc="""Build a one-tuple out of the topmost item on the stack.
1531 doc="""Build a two-tuple out of the top two items on the stack.
1546 doc="""Build a three-tuple out of the top three items on the stack.
1563 doc="Push an empty dict."),
1571 doc="""Build a dict out of the topmost stack slice, after markobject.
1588 doc="""Add a key+value pair to an existing dict.
1602 doc="""Add an arbitrary number of key+value pairs to an existing dict.
1625 doc="Push an empty set."),
1633 doc="""Add an arbitrary number of items to an existing set.
1655 doc="""Build a frozenset out of the topmost slice, after markobject.
1673 doc="Discard the top stack item, shrinking the stack by one item."),
1681 doc="Push the top stack item onto the stack again, duplicating it."),
1689 doc="""Push markobject onto the stack.
1702 doc="""Pop all the stack objects at and above the topmost markobject.
1718 doc="""Read an object from the memo and push it on the stack.
1731 doc="""Read an object from the memo and push it on the stack.
1743 doc="""Read an object from the memo and push it on the stack.
1755 doc="""Store the stack top into the memo. The stack is not popped.
1768 doc="""Store the stack top into the memo. The stack is not popped.
1780 doc="""Store the stack top into the memo. The stack is not popped.
1792 doc="""Store the stack top into the memo. The stack is not popped.
1807 doc="""Extension code.
1829 doc="""Extension code.
1840 doc="""Extension code.
1854 doc="""Push a global object (module.attr) on the stack.
1869 doc="""Push a global object (module.attr) on the stack.
1883 doc="""Push an object built from a callable and an argument tuple.
1912 doc="""Finish building an object, via __setstate__ or dict update.
1937 doc="""Build a class instance.
1987 doc="""Build a class instance.
2019 doc="""Build an object instance.
2034 doc="""Build an object instance.
2051 doc="""Protocol version indicator.
2063 doc="""Stop the unpickling machine.
2078 doc="""Indicate the beginning of a new frame.
2092 doc="""Push an object identified by a persistent ID.
2109 doc="""Push an object identified by a persistent ID.
2447 line += ' ' + opcode.doc.split('\n', 1)[0]