..
cmd_compile_only_error.py
shared/runtime/pyexec: Provide support for compile-only mode.
2025-11-22 00:06:58 +11:00
cmd_compile_only_error.py.exp
shared/runtime/pyexec: Provide support for compile-only mode.
2025-11-22 00:06:58 +11:00
cmd_compile_only.py
shared/runtime/pyexec: Provide support for compile-only mode.
2025-11-22 00:06:58 +11:00
cmd_compile_only.py.exp
shared/runtime/pyexec: Provide support for compile-only mode.
2025-11-22 00:06:58 +11:00
cmd_file_variable.py
shared/runtime/pyexec: Set __file__ for file input when enabled.
2025-11-22 00:01:28 +11:00
cmd_file_variable.py.exp
shared/runtime/pyexec: Set __file__ for file input when enabled.
2025-11-22 00:01:28 +11:00
cmd_module_atexit_exc.py
tests/cmdline: Add tests for using -m combined with sys.atexit.
2025-09-23 14:13:37 +10:00
cmd_module_atexit_exc.py.exp
tests/cmdline: Add tests for using -m combined with sys.atexit.
2025-09-23 14:13:37 +10:00
cmd_module_atexit.py
tests/cmdline: Add tests for using -m combined with sys.atexit.
2025-09-23 14:13:37 +10:00
cmd_module_atexit.py.exp
tests/cmdline: Add tests for using -m combined with sys.atexit.
2025-09-23 14:13:37 +10:00
cmd_optimise.py
tests/cmdline: Add test for -O option to check optimisation value.
2016-08-26 22:29:38 +10:00
cmd_optimise.py.exp
tests/cmdline: Add test for -O option to check optimisation value.
2016-08-26 22:29:38 +10:00
cmd_parsetree.py
py: Implement partial PEP-498 (f-string) support.
2021-08-14 16:58:40 +10:00
cmd_parsetree.py.exp
py/lexer: Support raw f-strings.
2024-06-06 17:34:28 +10:00
cmd_showbc_const.py
py/parse: Allow const types other than int to optimise as true/false.
2022-09-23 16:04:13 +10:00
cmd_showbc_const.py.exp
py/parse: Allow const types other than int to optimise as true/false.
2022-09-23 16:04:13 +10:00
cmd_showbc_opt.py
py/emit: Suppress unreachable bytecode/native code that follows jump.
2022-06-20 22:28:18 +10:00
cmd_showbc_opt.py.exp
py/emit: Suppress unreachable bytecode/native code that follows jump.
2022-06-20 22:28:18 +10:00
cmd_showbc.py
py/emit: Suppress unreachable bytecode/native code that follows jump.
2022-06-20 22:28:18 +10:00
cmd_showbc.py.exp
py/emit: Suppress unreachable bytecode/native code that follows jump.
2022-06-20 22:28:18 +10:00
cmd_sys_exit_0.py
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_sys_exit_0.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_sys_exit_error.py
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_sys_exit_error.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_sys_exit_none.py
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_sys_exit_none.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
cmd_verbose.py
tests: Add ability to test uPy cmdline executable.
2015-03-13 10:58:34 +00:00
cmd_verbose.py.exp
py: Rework bytecode and .mpy file format to be mostly static data.
2022-02-24 18:08:43 +11:00
repl_autocomplete_underscore.py
py/repl: Skip private variables when printing tab completion options.
2025-06-19 17:23:42 +10:00
repl_autocomplete_underscore.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_autocomplete.py
py/repl: Generalise REPL autocomplete to use qstr probing.
2018-02-19 16:12:44 +11:00
repl_autocomplete.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_autoindent.py
tests/cmdline: Add test for REPL auto-indent.
2022-04-22 17:00:16 +10:00
repl_autoindent.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_basic.py
tests: Improve test coverage of py/compile.c.
2016-10-11 12:30:32 +11:00
repl_basic.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_cont.py
py/repl: Check for an identifier char after the keyword.
2016-02-17 08:56:15 +00:00
repl_cont.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_emacs_keys.py
run-tests: Test REPL emacs keys, but only if present.
2015-08-06 00:03:44 +01:00
repl_emacs_keys.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_inspect.py
unix: Improve command line argument processing.
2021-04-07 12:41:25 +10:00
repl_inspect.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_lock.py
tests: Add test for heap lock in REPL.
2025-09-01 21:29:05 -05:00
repl_lock.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_micropyinspect
tests: Replace umodule with module everywhere.
2023-06-08 17:54:24 +10:00
repl_micropyinspect.py
tests/cmdline: Add test for MICROPYINSPECT environment variable.
2020-02-04 17:54:31 +11:00
repl_micropyinspect.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_paste.py
tests/cmdline: Add a test for REPL paste mode.
2025-06-19 17:23:42 +10:00
repl_paste.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_sys_ps1_ps2.py
tests: Replace umodule with module everywhere.
2023-06-08 17:54:24 +10:00
repl_sys_ps1_ps2.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00
repl_words_move.py
lib/mp-readline: Add word-based move/delete EMACS key sequences.
2020-01-12 13:09:27 +11:00
repl_words_move.py.exp
unix/main: Use standard pyexec REPL for unix and windows ports.
2025-11-22 00:00:07 +11:00