Ludwig Schwardt
Ludwig Schwardt
Thanks for reporting this! I’m also on Homebrew so you have got my attention 🙂 I’ll have some time in the next few days to try a 3.11 version of...
Whoops Milos, I lost track of this - sincere apologies! It's not a Python 3.11 issue per se... I already have 3.11 wheels on PyPI since October 2022 (#59). (Just...
> I tried pip3 install gnureadline but it didn't seem to have any effect on the shell. Yes, it plays "nicely" with your Python installation and requires you to call...
For myself, I use `pyenv` and `IPython` for tab completion, for what it's worth.
I have a new scheme to try out... 🙂 1. Install `gnureadline` by `pip install gnureadline`. 2. Create a config file like `~/.pythonrc`: ```python import sys try: import gnureadline as...
Mmm, I see now that `PYTHONSTARTUP` is too late to the party. It happens right at the end of the startup sequence. The second-last step is to import `rlcompleter`, which...
I'm very glad it worked for you, Milos! I know PYTHONSTARTUP but never used `usercustomize` before. I wish I knew about it sooner 😁 The `del readline` and `del sys`...
Here is [an example](https://stackoverflow.com/a/38606990) of a Python script that updates `usercustomize.py` in a reasonably safe way. I'm considering including such a script with `gnureadline` but I'm unsure if packages are...
Hi @onlynone, I had a good look at your PYTHONSTARTUP approach again. It makes sense what you are doing. The advantages of PYTHONSTARTUP over user/site customization are: - it only...
Interesting… Thanks very much for the heads-up! I’ll have to do some testing soon.