Edgewall Software

Changes between Initial Version and Version 1 of Ticket #6695, comment 10


Ignore:
Timestamp:
Aug 14, 2017, 1:55:28 AM (7 years ago)
Author:
Ryan J Ollos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6695, comment 10

    initial v1  
    1 Command completion works fine on OSX 10.12.6 with Python 2.7.
     1Command completion works fine on OSX 10.12.6 with Python 2.7. I have Python and `readline` installed via Brew. The `readline` package is recommended in Brew:
     2{{{#!sh
     3$brew info python
     4python: stable 2.7.13 (bottled), HEAD
     5Interpreted, interactive, object-oriented programming language
     6https://www.python.org
     7/usr/local/Cellar/python/2.7.13_1 (3,767 files, 52.3MB) *
     8  Poured from bottle on 2017-07-18 at 09:24:23
     9From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/python.rb
     10==> Dependencies
     11Build: sphinx-doc ✘, pkg-config ✔
     12Required: openssl ✔
     13Recommended: readline ✔, sqlite ✔, gdbm ✔
     14Optional: sphinx-doc ✘, tcl-tk ✘, berkeley-db@4 ✘
     15==> Options
     16[...]
     17--without-readline
     18    Build without readline support
     19[...]
     20}}}
    221
    3 As best I can tell, the issue reported in this ticket only occurs with Python 2.5. There's no documented support for `libedit` on [https://docs.python.org/release/2.5/lib/module-readline.html Python 2.5], but it's documented for [https://docs.python.org/release/2.6.9/library/readline.html Python 2.6] and [https://docs.python.org/2/library/readline.html Python 2.7].
     22As best I can tell, the issue reported in this ticket only occurs with Python 2.5. There's no documented support for `libedit` on [https://docs.python.org/release/2.5/lib/module-readline.html Python 2.5], but support appears to be documented for [https://docs.python.org/release/2.6.9/library/readline.html Python 2.6] and [https://docs.python.org/2/library/readline.html Python 2.7]. However, see also comments in [gmessage:trac-dev:wBiEpCNH654/gU33rJTOAwAJ].
    423
    5 If there are any issue encountered on OSX with Python 2.7, please open a new ticket.
     24If there are any issue encountered on OSX with Python 2.7, please open a new ticket. We can at least document what is needed to get command completion, whether that be installing readline, pypi:pyreadline or pypi:gnureadline.