diff options
author | Donghee Na <donghee.na@python.org> | 2023-09-29 12:18:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 12:18:18 (GMT) |
commit | 501939c9c1433c5b95ca19ae752e5881149f61b9 (patch) | |
tree | c2243227417c43ac74ec13c30b676cff550d0274 /Doc/using | |
parent | db0a258e796703e12befea9d6dec04e349ca2f5b (diff) | |
download | cpython-501939c9c1433c5b95ca19ae752e5881149f61b9.zip cpython-501939c9c1433c5b95ca19ae752e5881149f61b9.tar.gz cpython-501939c9c1433c5b95ca19ae752e5881149f61b9.tar.bz2 |
gh-105323: Update readline module to detect apple editline variant (gh-108665)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 9403c19..83b4c7a 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -758,11 +758,12 @@ Libraries options .. versionadded:: 3.3 -.. cmdoption:: --with-readline=editline +.. cmdoption:: --with-readline=readline|editline - Use ``editline`` library for backend of the :mod:`readline` module. + Designate a backend library for the :mod:`readline` module. - Define the ``WITH_EDITLINE`` macro. + * readline: Use readline as the backend. + * editline: Use editline as the backend. .. versionadded:: 3.10 |