diff options
author | Kathryn Lingel <kathryn@lingel.net> | 2019-05-06 12:16:29 -0700 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-05-02 23:11:03 +1000 |
commit | 1f1a54d0b1371efcfec6ca1b03d21b07a908c70d (patch) | |
tree | 9ffd727418a9934ae9aaa0e5f0b72fbce14f7f13 /tests/unix/extra_coverage.py.exp | |
parent | aa061ae391f2a8fbb16ace31ae0e4ae35b6ad5e9 (diff) | |
download | micropython-1f1a54d0b1371efcfec6ca1b03d21b07a908c70d.tar.gz micropython-1f1a54d0b1371efcfec6ca1b03d21b07a908c70d.zip |
py/repl: Filter private methods from tab completion.
Anything beginning with "_" will now only be tab-completed if there is
already a partial match for such an entry. In other words, entering
foo.<tab> will no longer complete/list anything beginning with "_".
Originally at adafruit#1850
Signed-off-by: Kathryn Lingel <kathryn@lingel.net>
Diffstat (limited to 'tests/unix/extra_coverage.py.exp')
-rw-r--r-- | tests/unix/extra_coverage.py.exp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unix/extra_coverage.py.exp b/tests/unix/extra_coverage.py.exp index d97de2c0ef..ab4d977741 100644 --- a/tests/unix/extra_coverage.py.exp +++ b/tests/unix/extra_coverage.py.exp @@ -28,11 +28,11 @@ RuntimeError: # repl ame__ -__class__ __name__ argv atexit -byteorder exc_info exit getsizeof -implementation maxsize modules path -platform print_exception stderr -stdin stdout version version_info +argv atexit byteorder exc_info +exit getsizeof implementation maxsize +modules path platform print_exception +stderr stdin stdout version +version_info ementation # attrtuple (start=1, stop=2, step=3) |