@@ -354,7 +354,7 @@ MP_DEFINE_CONST_FUN_OBJ_1(rp2pio_statemachine_stop_obj, rp2pio_statemachine_stop
354
354
//| def write(self, buffer: ReadableBuffer, *, start: int = 0, end: Optional[int] = None) -> None:
355
355
//| """Write the data contained in ``buffer`` to the state machine. If the buffer is empty, nothing happens.
356
356
//|
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
358
358
//| :param int start: Start of the slice of ``buffer`` to write out: ``buffer[start:end]``
359
359
//| :param int end: End of the slice; this index is not included. Defaults to ``len(buffer)``"""
360
360
//| ...
@@ -402,7 +402,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(rp2pio_statemachine_write_obj, 2, rp2pio_statemachine
402
402
//| """Read into ``buffer``. If the number of bytes to read is 0, nothing happens. The buffer
403
403
//| include any data added to the fifo even if it was added before this was called.
404
404
//|
405
- //| :param ~_typing .WriteableBuffer buffer: Read data into this buffer
405
+ //| :param ~circuitpython_typing .WriteableBuffer buffer: Read data into this buffer
406
406
//| :param int start: Start of the slice of ``buffer`` to read into: ``buffer[start:end]``
407
407
//| :param int end: End of the slice; this index is not included. Defaults to ``len(buffer)``"""
408
408
//| ...
@@ -450,8 +450,8 @@ MP_DEFINE_CONST_FUN_OBJ_KW(rp2pio_statemachine_readinto_obj, 2, rp2pio_statemach
450
450
//| may be different. The function will return once both are filled.
451
451
//| If buffer slice lengths are both 0, nothing happens.
452
452
//|
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
455
455
//| :param int out_start: Start of the slice of buffer_out to write out: ``buffer_out[out_start:out_end]``
456
456
//| :param int out_end: End of the slice; this index is not included. Defaults to ``len(buffer_out)``
457
457
//| :param int in_start: Start of the slice of ``buffer_in`` to read into: ``buffer_in[in_start:in_end]``
0 commit comments