Lines Matching refs:doc
184 def __init__(self, name, n, reader, doc): argument
196 assert isinstance(doc, str)
197 self.doc = doc
217 doc="One-byte unsigned integer.")
238 doc="Two-byte unsigned integer, little-endian.")
259 doc="Four-byte signed integer, little-endian, 2's complement.")
315 doc="""A newline-terminated string.
328 doc="""A newline-terminated string.
348 doc="""A pair of newline-terminated strings.
383 doc="""A counted string.
412 doc="""A counted string.
438 doc="""A newline-terminated Unicode string.
476 doc="""A counted Unicode string.
542 doc="""A newline-terminated decimal integer literal.
555 doc="""A newline-terminated decimal integer literal.
575 doc="""A newline-terminated decimal floating literal.
604 doc="""An 8-byte binary representation of a float, big-endian.
647 doc="""A binary long, little-endian, using 1-byte size.
681 doc="""A binary representation of a long, little-endian.
710 def __init__(self, name, obtype, doc): argument
720 assert isinstance(doc, str)
721 self.doc = doc
730 doc="A short (as opposed to long) Python integer object.")
735 doc="A long (as opposed to short) Python integer object.")
740 doc="A Python integer object (short or long), or "
746 doc="A Python bool object.")
751 doc="A Python float object.")
756 doc="A Python string object.")
761 doc="A Python Unicode string object.")
766 doc="The Python None object.")
771 doc="A Python tuple object.")
776 doc="A Python list object.")
781 doc="A Python dict object.")
786 doc="Any kind of object whatsoever.")
791 doc="""'The mark' is a unique object.
805 doc="""An object representing a contiguous slice of the stack.
855 stack_before, stack_after, proto, doc): argument
879 assert isinstance(doc, str)
880 self.doc = doc
893 doc="""Push an integer or bool.
918 doc="""Push a four-byte signed integer.
932 doc="""Push a one-byte unsigned integer.
944 doc="""Push a two-byte unsigned integer.
957 doc="""Push a long integer.
975 doc="""Long integer using one-byte length.
986 doc="""Long integer using found-byte length.
999 doc="""Push a Python string object.
1012 doc="""Push a Python string object.
1025 doc="""Push a Python string object.
1040 doc="Push None on the stack."),
1051 doc="""True.
1061 doc="""True.
1073 doc="""Push a Python Unicode string object.
1086 doc="""Push a Python Unicode string object.
1101 doc="""Newline-terminated decimal float literal.
1121 doc="""Float stored in binary form, with 8 bytes of data.
1139 doc="Push an empty list."),
1147 doc="""Append an object to a list.
1161 doc="""Extend a list by a slice of stack objects.
1175 doc="""Build a list out of the topmost stack slice, after markobject.
1193 doc="Push an empty tuple."),
1201 doc="""Build a tuple out of the topmost stack slice, after markobject.
1217 doc="""Build a one-tuple out of the topmost item on the stack.
1232 doc="""Build a two-tuple out of the top two items on the stack.
1247 doc="""Build a three-tuple out of the top three items on the stack.
1264 doc="Push an empty dict."),
1272 doc="""Build a dict out of the topmost stack slice, after markobject.
1289 doc="""Add a key+value pair to an existing dict.
1303 doc="""Add an arbitrary number of key+value pairs to an existing dict.
1326 doc="Discard the top stack item, shrinking the stack by one item."),
1334 doc="Push the top stack item onto the stack again, duplicating it."),
1342 doc="""Push markobject onto the stack.
1355 doc="""Pop all the stack objects at and above the topmost markobject.
1371 doc="""Read an object from the memo and push it on the stack.
1384 doc="""Read an object from the memo and push it on the stack.
1396 doc="""Read an object from the memo and push it on the stack.
1408 doc="""Store the stack top into the memo. The stack is not popped.
1421 doc="""Store the stack top into the memo. The stack is not popped.
1433 doc="""Store the stack top into the memo. The stack is not popped.
1448 doc="""Extension code.
1470 doc="""Extension code.
1481 doc="""Extension code.
1495 doc="""Push a global object (module.attr) on the stack.
1515 doc="""Push an object built from a callable and an argument tuple.
1544 doc="""Finish building an object, via __setstate__ or dict update.
1576 doc="""Build a class instance.
1632 doc="""Build a class instance.
1665 doc="""Build an object instance.
1682 doc="""Protocol version indicator.
1694 doc="""Stop the unpickling machine.
1709 doc="""Push an object identified by a persistent ID.
1726 doc="""Push an object identified by a persistent ID.