summaryrefslogtreecommitdiff
path: root/tests/cmdline/repl_autocomplete.py.exp
blob: 3e5fedccbc429a442ad2f2569e55a6523b0f8bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MicroPython \.\+ version
Use \.\+
>>> # tests for autocompletion
>>> import sys
>>> not_exist.
>>> not_exist
>>> x = '123'
>>> 1, x.isdigit()
(1, True)
>>> i = str
>>> i.lower('ABC')
'abc'
>>> x = 5
>>> x.
from_bytes      to_bytes
>>> x.__class__
<class 'int'>
>>> None.
>>>