Die Dokumentation des Python readline
Modul sagt "Verfügbarkeit: Unix". Es scheint jedoch unter OS X nicht verfügbar zu sein, obwohl andere als Unix gekennzeichnete Module verfügbar sind. Ich verwende das folgende Modul:
$ uname -a
Darwin greg.local 8.11.1 Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE\_I386 i386 i386
$ which python
/usr/bin/python
$ python
Python 2.3.5 (#1, Nov 26 2007, 09:16:55)
\[GCC 4.0.1 (Apple Computer, Inc. build 5363) (+4864187)\] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import readline
Traceback (most recent call last):
File "", line 1, in ?
ImportError: No module named readline
>>>
Ich habe auch Python 2.5 über MacPorts installiert, aber readline
ist auch dort nicht verfügbar.
Was kann ich tun, um die readline
Funktionalität für Pythons raw_input()
Funktion unter OS X?