8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
On a PyBoard v1.1 with firmware 1.13, put the following code into a file:
import micropython @micropython.viper def take_memoryview_slice(): ba = bytearray(10) mv = memoryview(ba) slice = mv[0:1]
Running take_memoryview_slice() resets the PyBoard.
take_memoryview_slice()