summaryrefslogtreecommitdiff
path: root/tests/cmdline/repl_autocomplete.py.exp
blob: 7d160e7bf9bd56bfb7b9b9ab9ce7469260cfa0ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.
>>> x.__class__
<class 'int'>
>>> None.
>>>