Home | History | Annotate | Download | only in Lib

Lines Matching defs: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.
522 doc="""A counted bytes string.
556 doc="""A counted bytes string.
591 doc="""A counted bytes string.
615 doc="""A newline-terminated Unicode string.
653 doc="""A counted Unicode string.
694 doc="""A counted Unicode string.
735 doc="""A counted Unicode string.
787 doc="""A newline-terminated decimal integer literal.
800 doc="""A newline-terminated decimal integer literal.
820 doc="""A newline-terminated decimal floating literal.
849 doc="""An 8-byte binary representation of a float, big-endian.
892 doc="""A binary long, little-endian, using 1-byte size.
926 doc="""A binary representation of a long, little-endian.
952 'doc',
955 def __init__(self, name, obtype, doc):
965 assert isinstance(doc, str)
966 self.doc = doc
975 doc="A Python integer object.")
980 doc="A Python integer or boolean object.")
985 doc="A Python boolean object.")
990 doc="A Python float object.")
995 doc="A Python bytes or (Unicode) string object.")
1000 doc="A Python bytes object.")
1005 doc="A Python (Unicode) string object.")
1010 doc="The Python None object.")
1015 doc="A Python tuple object.")
1020 doc="A Python list object.")
1025 doc="A Python dict object.")
1030 doc="A Python set object.")
1035 doc="A Python frozenset object.")
1040 doc="Any kind of object whatsoever.")
1045 doc="""'The mark' is a unique object.
1059 doc="""An object representing a contiguous slice of the stack.
1090 # the bytestream s, and arg.doc documents the format of the raw
1105 'doc',
1109 stack_before, stack_after, proto, doc):
1133 assert isinstance(doc, str)
1134 self.doc = doc
1147 doc="""Push an integer or bool.
1172 doc="""Push a four-byte signed integer.
1186 doc="""Push a one-byte unsigned integer.
1198 doc="""Push a two-byte unsigned integer.
1211 doc="""Push a long integer.
1229 doc="""Long integer using one-byte length.
1240 doc="""Long integer using found-byte length.
1253 doc="""Push a Python string object.
1269 doc="""Push a Python string object.
1286 doc="""Push a Python string object.
1305 doc="""Push a Python bytes object.
1318 doc="""Push a Python bytes object.
1331 doc="""Push a Python bytes object.
1346 doc="Push None on the stack."),
1357 doc="""True.
1367 doc="""True.
1379 doc="""Push a Python Unicode string object.
1392 doc="""Push a Python Unicode string object.
1405 doc="""Push a Python Unicode string object.
1418 doc="""Push a Python Unicode string object.
1433 doc="""Newline-terminated decimal float literal.
1453 doc="""Float stored in binary form, with 8 bytes of data.
1471 doc="Push an empty list."),
1479 doc="""Append an object to a list.
1493 doc="""Extend a list by a slice of stack objects.
1507 doc="""Build a list out of the topmost stack slice, after markobject.
1525 doc="Push an empty tuple."),
1533 doc
1549 doc="""Build a one-tuple out of the topmost item on the stack.
1564 doc="""Build a two-tuple out of the top two items on the stack.
1579 doc="""Build a three-tuple out of the top three items on the stack.
1596 doc="Push an empty dict."),
1604 doc="""Build a dict out of the topmost stack slice, after markobject.
1621 doc="""Add a key+value pair to an existing dict.
1635 doc="""Add an arbitrary number of key+value pairs to an existing dict.
1658 doc="Push an empty set."),
1666 doc="""Add an arbitrary number of items to an existing set.
1688 doc="""Build a frozenset out of the topmost slice, after markobject.
1706 doc="Discard the top stack item, shrinking the stack by one item."),
1714 doc="Push the top stack item onto the stack again, duplicating it."),
1722 doc="""Push markobject onto the stack.
1726 to work on. See markobject.doc for more detail.
1735 doc="""Pop all the stack objects at and above the topmost markobject.
1751 doc="""Read an object from the memo and push it on the stack.
1764 doc="""Read an object from the memo and push it on the stack.
1776 doc="""Read an object from the memo and push it on the stack.
1788 doc="""Store the stack top into the memo. The stack is not popped.
1801 doc="""Store the stack top into the memo. The stack is not popped.
1813 doc="""Store the stack top into the memo. The stack is not popped.
1825 doc="""Store the stack top into the memo. The stack is not popped.
1840 doc="""Extension code.
1862 doc="""Extension code.
1873 doc="""Extension code.
1887 doc="""Push a global object (module.attr) on the stack.
1902 doc="""Push a global object (module.attr) on the stack.
1916 doc="""Push an object built from a callable and an argument tuple.
1945 doc="""Finish building an object, via __setstate__ or dict update.
1970 doc="""Build a class instance.
2020 doc="""Build a class instance.
2052 doc="""Build an object instance.
2067 doc="""Build an object instance.
2084 doc="""Protocol version indicator.
2096 doc="""Stop the unpickling machine.
2111 doc="""Indicate the beginning of a new frame.
2125 doc="""Push an object identified by a persistent ID.
2142 doc="""Push an object identified by a persistent ID.
2475 line += ' ' + opcode.doc.split('\n', 1)[0]