Home
last modified time | relevance | path

Searched refs:unpack_item (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/
Dxdrlib.py222 def unpack_list(self, unpack_item): argument
229 item = unpack_item()
233 def unpack_farray(self, n, unpack_item): argument
236 list.append(unpack_item())
239 def unpack_array(self, unpack_item): argument
241 return self.unpack_farray(n, unpack_item)
/third_party/python/Doc/library/
Dxdrlib.rst229 .. method:: Unpacker.unpack_list(unpack_item)
234 indicates the end of the list. *unpack_item* is the function that is called to
238 .. method:: Unpacker.unpack_farray(n, unpack_item)
241 is number of list elements to expect in the buffer. As above, *unpack_item* is
245 .. method:: Unpacker.unpack_array(unpack_item)