This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Valentin Zhao, ned.deily, ronaldoussoren, vstinner, xiang.zhang
Date 2018-05-30.12:35:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527683732.0.0.682650639539.issue33692@psf.upfronthosting.co.za>
In-reply-to
Content
FTR:
> On macOS, readline is provided by libedit.

It *may* be provided by libedit. GNU readline is also commonly used on macOS, although it is not provided by Apple.  The easiest way to tell which is in use is to examine the __doc__ attribute of the readline module:

$ /usr/local/bin/python3.6 -c 'import readline;print(readline.__doc__)'
Importing this module enables command line editing using libedit readline.
$ /macports/bin/python3.6 -c 'import readline;print(readline.__doc__)'
Importing this module enables command line editing using GNU readline.

https://docs.python.org/3/library/readline.html#module-readline
History
Date User Action Args
2018-05-30 12:35:32ned.deilysetrecipients: + ned.deily, ronaldoussoren, vstinner, xiang.zhang, Valentin Zhao
2018-05-30 12:35:32ned.deilysetmessageid: <1527683732.0.0.682650639539.issue33692@psf.upfronthosting.co.za>
2018-05-30 12:35:31ned.deilylinkissue33692 messages
2018-05-30 12:35:31ned.deilycreate