python-gnureadline icon indicating copy to clipboard operation
python-gnureadline copied to clipboard

The standard Python readline extension statically linked against the GNU readline library, providing readline support to Python on platforms without it.

Results 16 python-gnureadline issues
Sort by recently updated
recently updated
newest added

python 3.13.0a3 gnureadline-8.1.2 As mentioned in https://github.com/python/cpython/issues/117669, _PyOS_ReadlineTState was removed from cpython 3.13 The error is ```shell Modules/3.x/clinic/readline.c.h:34:10: warning: implicit declaration of function ‘_PyArg_CheckPositional’; did you mean ‘PyErr_CheckSignals’? [-Wimplicit-function-declaration] if...

Disable the WITH_EDITLINE macro to avoid picking up libedit on macOS. And remove `distutils` which has left Python 3.12 (thanks @markmentovai and @srmainwaring!). While I'm at it, update the Python...

I found my python maybe lack of readline functionalities. If I entered the interactive shell, I could not use tab to do auto-completion or use navigation key like up/down to...

Replace deprecated package distutils and always use the GNU readline definitions when building on macOS. System: MacBook Pro M1 macOS Sonoma 14.2.1 Xcode 15.1 (Apple clang version 15.0.0 (clang-1500.1.0.2.5) -...

**brew list --version | grep python@** ``` [email protected] 3.10.13_2 [email protected] 3.11.8 [email protected] 3.12.2_1 [email protected] 3.8.18_2 [email protected] 3.9.18_2 ``` $ **pip3 install gnureadline --break-system-packages** ``` Collecting gnureadline Using cached gnureadline-8.1.2.tar.gz (3.1...

Hey there! First of all: Thanks for this great package! ### TL;DR: I propose to statically link ``gnureadline`` not only against ``readline``, but also against ``ncurses``. This would enable usage...

As others have pointed out, proper `readline` support seems to have disappeared from Python under Homebrew, and `gnureadline` provided an excellent alternative, which I used every day, until... My projects...

When building for a Python whose own readline module has been configured to use editline, `WITH_EDITLINE` will be defined during the python-gnureadline build, by virtue of its inclusion of "pyconfig.h"...

Homebrew has decided to stop building Python with GNU Readline, starting with version 3.11. An update should be made to reflect this change in the section informing users about whether...

Thanks a lot for making this package. Given that Homebrew might be removing GNU readline for good (as discussed here https://github.com/ludwigschwardt/python-gnureadline/issues/61), python-gnureadline seemed exactly like what I needed to hopefully...