QUERY · ISSUE
py/builtinhelp: Add options for changing help('modules') format.
enhancement
Description
Hello, MicoPython community.
We are porting MicroPython on our device. We recently ran into a problem. Width of screen of our device is so small. Default format of help('modules') is poorly displayed. We would like to be able to change it by NUM_COLUMNS and COLUMN_WIDTH.
https://github.com/micropython/micropython/pull/18734
Code Size
No response
Implementation
I intend to implement this feature and would submit a Pull Request if desirable
Code of Conduct
Yes, I agree
CANDIDATE · PULL REQUEST
ports/unix/mpconfigport.h: Enable "help" module by default.
port-unix
The "help" module is disabled by default for the UNIX port, making it
difficult to explore the available modules (e.g. via the use of the
"help('modules')" call). This change enables it by default.