diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-05 13:45:38 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-06 04:57:22 +0200 |
| commit | 319f7f0f09a620e7cd9987d4834660598bfb7109 (patch) | |
| tree | 7ca364153f21d34f656acd352cb505114981b5b6 /menuconfig.py | |
| parent | d577865e0c9b4c8d45962c17fc9cb541ca49ca1d (diff) | |
Update various comments now that menuconfig is Python 2-compatible
Diffstat (limited to 'menuconfig.py')
| -rwxr-xr-x | menuconfig.py | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/menuconfig.py b/menuconfig.py index ce86d89..187df1c 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -7,8 +7,8 @@ Overview ======== -A curses-based menuconfig implementation. The interface should feel familiar to -people used to mconf ('make menuconfig'). +A curses-based Python 2/3 menuconfig implementation. The interface should feel +familiar to people used to mconf ('make menuconfig'). Supports the same keys as mconf, and also supports a set of keybindings inspired by Vi: @@ -174,18 +174,12 @@ Other features Limitations =========== - - Python 3 only +Doesn't work out of the box on Windows, but can be made to work with 'pip +install windows-curses'. See the +https://github.com/zephyrproject-rtos/windows-curses repository. - This is mostly due to Python 2 not having curses.get_wch(), which is needed - for Unicode support. - - - Doesn't work out of the box on Windows - - Can be made to work with 'pip install windows-curses' though. See the - https://github.com/zephyrproject-rtos/windows-curses repository. - - 'pip install kconfiglib' on Windows automatically installs windows-curses - to make the menuconfig usable. +'pip install kconfiglib' on Windows automatically installs windows-curses +to make the menuconfig usable. """ from __future__ import print_function |
