@@ -354,7 +354,7 @@ MP_DEFINE_CONST_FUN_OBJ_1(rp2pio_statemachine_stop_obj, rp2pio_statemachine_stop
354354//| def write(self, buffer: ReadableBuffer, *, start: int = 0, end: Optional[int] = None) -> None:
355355//| """Write the data contained in ``buffer`` to the state machine. If the buffer is empty, nothing happens.
356356//|
357- //| :param ~_typing .ReadableBuffer buffer: Write out the data in this buffer
357+ //| :param ~circuitpython_typing .ReadableBuffer buffer: Write out the data in this buffer
358358//| :param int start: Start of the slice of ``buffer`` to write out: ``buffer[start:end]``
359359//| :param int end: End of the slice; this index is not included. Defaults to ``len(buffer)``"""
360360//| ...
@@ -402,7 +402,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(rp2pio_statemachine_write_obj, 2, rp2pio_statemachine
402402//| """Read into ``buffer``. If the number of bytes to read is 0, nothing happens. The buffer
403403//| include any data added to the fifo even if it was added before this was called.
404404//|
405- //| :param ~_typing .WriteableBuffer buffer: Read data into this buffer
405+ //| :param ~circuitpython_typing .WriteableBuffer buffer: Read data into this buffer
406406//| :param int start: Start of the slice of ``buffer`` to read into: ``buffer[start:end]``
407407//| :param int end: End of the slice; this index is not included. Defaults to ``len(buffer)``"""
408408//| ...
@@ -450,8 +450,8 @@ MP_DEFINE_CONST_FUN_OBJ_KW(rp2pio_statemachine_readinto_obj, 2, rp2pio_statemach
450450//| may be different. The function will return once both are filled.
451451//| If buffer slice lengths are both 0, nothing happens.
452452//|
453- //| :param ~_typing .ReadableBuffer buffer_out: Write out the data in this buffer
454- //| :param ~_typing .WriteableBuffer buffer_in: Read data into this buffer
453+ //| :param ~circuitpython_typing .ReadableBuffer buffer_out: Write out the data in this buffer
454+ //| :param ~circuitpython_typing .WriteableBuffer buffer_in: Read data into this buffer
455455//| :param int out_start: Start of the slice of buffer_out to write out: ``buffer_out[out_start:out_end]``
456456//| :param int out_end: End of the slice; this index is not included. Defaults to ``len(buffer_out)``
457457//| :param int in_start: Start of the slice of ``buffer_in`` to read into: ``buffer_in[in_start:in_end]``
0 commit comments