diff options
Diffstat (limited to 'docs/library/builtins.rst')
-rw-r--r-- | docs/library/builtins.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/library/builtins.rst b/docs/library/builtins.rst index 7a0229c2a..e489375b1 100644 --- a/docs/library/builtins.rst +++ b/docs/library/builtins.rst @@ -82,6 +82,10 @@ Functions and types In MicroPython, `byteorder` parameter must be positional (this is compatible with CPython). + .. note:: The optional ``signed`` kwarg from CPython is not supported. + MicroPython currently converts negative integers as signed, + and positive as unsigned. (:ref:`Details <cpydiff_types_int_to_bytes>`.) + .. function:: isinstance() .. function:: issubclass() |