summaryrefslogtreecommitdiff
path: root/tests/cmdline/repl_autocomplete.py.exp
blob: 0dabc90144e5d1595ccdd9e3bf2807dbee38c878 (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.
bit_length      from_bytes      to_bytes
>>> x.
>>> x.__class__
<class 'int'>
>>> None.
>>>