summaryrefslogtreecommitdiff
path: root/shared-bindings/busio/UART.c
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-02 13:25:07 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-02 13:25:07 -0400
commit522b17ca93d4e1d64bb113057c8a62992a22c4ab (patch)
tree8c05d048acf8e56b066ac5a27eedf7d8df91d0fd /shared-bindings/busio/UART.c
parentac113fdc815f31b54d742f73265359787bd95290 (diff)
Made suggested changes
Diffstat (limited to 'shared-bindings/busio/UART.c')
-rw-r--r--shared-bindings/busio/UART.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/busio/UART.c b/shared-bindings/busio/UART.c
index 133caee19..af0d4dbcd 100644
--- a/shared-bindings/busio/UART.c
+++ b/shared-bindings/busio/UART.c
@@ -190,7 +190,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(busio_uart___exit___obj, 4, 4, busio_
//| ...
//|
-//| def readinto(self, buf: bytes) -> Optional[int]:
+//| def readinto(self, buf: Union[bytearray, memoryview]) -> Optional[int]:
//| """Read bytes into the ``buf``. Read at most ``len(buf)`` bytes.
//|
//| :return: number of bytes read and stored into ``buf``
@@ -200,7 +200,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(busio_uart___exit___obj, 4, 4, busio_
//| ...
//|
-//| def readline(self, ) -> Optional[int]:
+//| def readline(self, ) -> bytes:
//| """Read a line, ending in a newline character.
//|
//| :return: the line read
@@ -208,7 +208,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(busio_uart___exit___obj, 4, 4, busio_
//| ...
//|
-//| def write(self, buf: bytearray) -> Optional[int]:
+//| def write(self, buf: Union[bytearray, memoryview]) -> Optional[int]:
//| """Write the buffer of bytes to the bus.
//|
//| *New in CircuitPython 4.0:* ``buf`` must be bytes, not a string.