QUERY · ISSUE
Interactive REPL does not support unicode/utf8
enhancementunicode
Copy the following and paste it at the REPL:
z = 'ÇØĚ'
In paste mode it works, but not at the REPL prompt where the string contents disappears.
CANDIDATE · ISSUE
cut & paste into repl swallows '-'
MicroPython v1.9.1-399-g40ae6724 running on an ESP32
when i cut 10/5 - 20/10 from my editor and paste it into repl all is good.
but when i cut (x/5) – (y/10) and paste it into repl the minus sign has dissapeared.
all works well under python3 in terminal mode.
MicroPython v1.9.1-399-g40ae6724 on 2017-08-15; ESP32 module with ESP32
x,y = 10,20
10/5 - 20/10
0.0
(x/5) (y/10)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'float' object is not callable