readline


Namereadline JSON
Version 6.2.4.2 PyPI version JSON
download
home_pagehttp://github.com/ludwigschwardt/python-gnureadline
SummaryThe standard Python readline extension statically linked against the GNU readline library.
upload_time2022-10-12 14:56:58
maintainerLudwig Schwardt, Sridhar Ratnakumar
docs_urlNone
author
requires_python<3.4
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ======================================
 WARNING: THIS PACKAGE IS DEPRECATED!
======================================

It has been renamed to **GNUREADLINE** to resolve a name clash with the
standard library module. Please go to the new `gnureadline`_ PyPI page.

Stand-alone readline module
===========================

Some platforms, such as Mac OS X, do not ship with `GNU readline`_ installed.
The readline extension module in the standard library of Mac "system" Python
uses NetBSD's `editline`_ (libedit) library instead, which is a readline
replacement with a less restrictive software license.

As the alternatives to GNU readline do not have fully equivalent functionality,
it is useful to add proper readline support to these platforms. This module
achieves this by bundling the standard Python readline module with the GNU
readline source code, which is compiled and statically linked to it. The end
result is a package which is simple to install and requires no extra shared
libraries.

The module can be used with both Python 2.x and 3.x **but only up to 3.3**, and
has been tested with Python versions 2.5, 2.6, 2.7, 3.1, 3.2 and 3.3. The first
three numbers of the module version reflect the version of the underlying GNU
readline library (major, minor and patch level), while any additional fourth
number distinguishes different module updates based on the same readline library.

This module is usually unnecessary on Linux and other Unix systems with default
readline support. An exception is if you have a Python distribution that does
not include GNU readline due to licensing restrictions (such as ActiveState's
ActivePython in the past). If you are using Windows, which also ships without
GNU readline, you might want to consider using the `pyreadline`_ module instead,
which is a readline replacement written in pure Python that interacts with the
Windows clipboard.

The latest development version is available from the `GitHub repository`_.

.. _gnureadline: http://pypi.python.org/pypi/gnureadline
.. _GNU readline: http://www.gnu.org/software/readline/
.. _editline: http://www.thrysoee.dk/editline/
.. _pyreadline: http://pypi.python.org/pypi/pyreadline
.. _GitHub repository: http://github.com/ludwigschwardt/python-gnureadline


History
=======

6.2.4.2 (2022-06-24)
--------------------

* THIS PACKAGE IS DEPRECATED! USE gnureadline INSTEAD!
* Add appropriate warnings to the docs to hammer this home
* Prevent installation on Python 3.4 and later (the module is outdated)
* Fix compilation on macOS 10.9+ to avoid crash before Python version check

6.2.4.1 (2012-10-22)
--------------------

* #21: Fixed building on Python.org 3.3 / Mac OS 10.8

6.2.4 (2012-10-17)
------------------

* #15: Improved detection of compilers before Xcode 4.3
* Uses Python 3.x readline.c from v3.3.0 tag (changeset 73997)
* Updated to build against readline 6.2 (patch-level 4)

6.2.2 (2012-02-24)
------------------

* #14: Fixed compilation with Xcode 4.3 on Mac OS 10.7
* Updated to build against readline 6.2 (patch-level 2)

6.2.1 (2011-08-31)
------------------

* #10: Fixed '_emacs_meta_keymap' missing symbol on Mac OS 10.7
* #7: Fixed SDK version check to work with Mac OS 10.7 and later
* Uses Python 2.x readline.c from release27-maint branch (r87358)
* Uses Python 3.x readline.c from release32-maint branch (r88446)

6.2.0 (2011-06-02)
------------------

* #5: Removed '-arch ppc' on Mac OS 10.6, as Snow Leopard supports Intel only
* Updated to build against readline 6.2 (patch-level 1)

6.1.0 (2010-09-20)
------------------

* Changed version number to reflect readline version instead of Python version
* #4: Updated to build against readline 6.1 (patch-level 2)
* #2: Python 3 support
* Uses Python 2.x readline.c from release27-maint branch (r83672)
* Uses Python 3.x readline.c from r32a2 tag (r84541)
* Source code moved to GitHub
* Additional maintainer: Sridhar Ratnakumar

2.6.4 (2009-11-26)
------------------

* Added -fPIC to compiler flags to fix linking error on 64-bit Ubuntu
* Enabled all readline functionality specified in pyconfig.h macros
* Uses readline.c from Python svn trunk (r75725), which followed 2.6.4 release
* Patched readline.c to replace Py_XDECREF calls with the safer Py_CLEAR
* Fixed compilation error on Mac OS 10.4 with XCode older than version 2.4

2.6.1 (2009-11-18)
------------------

* Updated package to work with Mac OS 10.6 (Snow Leopard), which ships with
  Python 2.6.1
* Uses readline.c from Python 2.6.1 release
* Backported "spurious trailing space" bugfix from Python svn trunk (see e.g.
  https://bugs.launchpad.net/python/+bug/470824 for details on bug)
* Updated to build against readline 6.0 (patch-level 4)
* Now builds successfully on Linux (removed Mac-specific flags in this case),
  and still supports Mac OS 10.4 and 10.5

2.5.1 (2008-05-28)
------------------

* Updated package to work with Mac OS 10.5 (Leopard), which ships with Python
  2.5.1
* Uses readline.c from Python 2.5.1 release
* Updated to build against readline 5.2 (patch-level 12)
* New maintainer: Ludwig Schwardt

2.4.2 (2005-12-26)
------------------

* Original package by Bob Ippolito, supporting Python 2.3 / 2.4 on Mac OS 10.3
  (Panther) and 10.4 (Tiger)
* Builds against readline 5.1

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/ludwigschwardt/python-gnureadline",
    "name": "readline",
    "maintainer": "Ludwig Schwardt, Sridhar Ratnakumar",
    "docs_url": null,
    "requires_python": "<3.4",
    "maintainer_email": "ludwig.schwardt@gmail.com, srid@srid.ca",
    "keywords": "",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/38/ae/946d64a37437c3f99c72ebb11db4d399352df75526f01f7f5f3bb5f80c23/readline-6.2.4.2.tar.gz",
    "platform": null,
    "description": "======================================\n WARNING: THIS PACKAGE IS DEPRECATED!\n======================================\n\nIt has been renamed to **GNUREADLINE** to resolve a name clash with the\nstandard library module. Please go to the new `gnureadline`_ PyPI page.\n\nStand-alone readline module\n===========================\n\nSome platforms, such as Mac OS X, do not ship with `GNU readline`_ installed.\nThe readline extension module in the standard library of Mac \"system\" Python\nuses NetBSD's `editline`_ (libedit) library instead, which is a readline\nreplacement with a less restrictive software license.\n\nAs the alternatives to GNU readline do not have fully equivalent functionality,\nit is useful to add proper readline support to these platforms. This module\nachieves this by bundling the standard Python readline module with the GNU\nreadline source code, which is compiled and statically linked to it. The end\nresult is a package which is simple to install and requires no extra shared\nlibraries.\n\nThe module can be used with both Python 2.x and 3.x **but only up to 3.3**, and\nhas been tested with Python versions 2.5, 2.6, 2.7, 3.1, 3.2 and 3.3. The first\nthree numbers of the module version reflect the version of the underlying GNU\nreadline library (major, minor and patch level), while any additional fourth\nnumber distinguishes different module updates based on the same readline library.\n\nThis module is usually unnecessary on Linux and other Unix systems with default\nreadline support. An exception is if you have a Python distribution that does\nnot include GNU readline due to licensing restrictions (such as ActiveState's\nActivePython in the past). If you are using Windows, which also ships without\nGNU readline, you might want to consider using the `pyreadline`_ module instead,\nwhich is a readline replacement written in pure Python that interacts with the\nWindows clipboard.\n\nThe latest development version is available from the `GitHub repository`_.\n\n.. _gnureadline: http://pypi.python.org/pypi/gnureadline\n.. _GNU readline: http://www.gnu.org/software/readline/\n.. _editline: http://www.thrysoee.dk/editline/\n.. _pyreadline: http://pypi.python.org/pypi/pyreadline\n.. _GitHub repository: http://github.com/ludwigschwardt/python-gnureadline\n\n\nHistory\n=======\n\n6.2.4.2 (2022-06-24)\n--------------------\n\n* THIS PACKAGE IS DEPRECATED! USE gnureadline INSTEAD!\n* Add appropriate warnings to the docs to hammer this home\n* Prevent installation on Python 3.4 and later (the module is outdated)\n* Fix compilation on macOS 10.9+ to avoid crash before Python version check\n\n6.2.4.1 (2012-10-22)\n--------------------\n\n* #21: Fixed building on Python.org 3.3 / Mac OS 10.8\n\n6.2.4 (2012-10-17)\n------------------\n\n* #15: Improved detection of compilers before Xcode 4.3\n* Uses Python 3.x readline.c from v3.3.0 tag (changeset 73997)\n* Updated to build against readline 6.2 (patch-level 4)\n\n6.2.2 (2012-02-24)\n------------------\n\n* #14: Fixed compilation with Xcode 4.3 on Mac OS 10.7\n* Updated to build against readline 6.2 (patch-level 2)\n\n6.2.1 (2011-08-31)\n------------------\n\n* #10: Fixed '_emacs_meta_keymap' missing symbol on Mac OS 10.7\n* #7: Fixed SDK version check to work with Mac OS 10.7 and later\n* Uses Python 2.x readline.c from release27-maint branch (r87358)\n* Uses Python 3.x readline.c from release32-maint branch (r88446)\n\n6.2.0 (2011-06-02)\n------------------\n\n* #5: Removed '-arch ppc' on Mac OS 10.6, as Snow Leopard supports Intel only\n* Updated to build against readline 6.2 (patch-level 1)\n\n6.1.0 (2010-09-20)\n------------------\n\n* Changed version number to reflect readline version instead of Python version\n* #4: Updated to build against readline 6.1 (patch-level 2)\n* #2: Python 3 support\n* Uses Python 2.x readline.c from release27-maint branch (r83672)\n* Uses Python 3.x readline.c from r32a2 tag (r84541)\n* Source code moved to GitHub\n* Additional maintainer: Sridhar Ratnakumar\n\n2.6.4 (2009-11-26)\n------------------\n\n* Added -fPIC to compiler flags to fix linking error on 64-bit Ubuntu\n* Enabled all readline functionality specified in pyconfig.h macros\n* Uses readline.c from Python svn trunk (r75725), which followed 2.6.4 release\n* Patched readline.c to replace Py_XDECREF calls with the safer Py_CLEAR\n* Fixed compilation error on Mac OS 10.4 with XCode older than version 2.4\n\n2.6.1 (2009-11-18)\n------------------\n\n* Updated package to work with Mac OS 10.6 (Snow Leopard), which ships with\n  Python 2.6.1\n* Uses readline.c from Python 2.6.1 release\n* Backported \"spurious trailing space\" bugfix from Python svn trunk (see e.g.\n  https://bugs.launchpad.net/python/+bug/470824 for details on bug)\n* Updated to build against readline 6.0 (patch-level 4)\n* Now builds successfully on Linux (removed Mac-specific flags in this case),\n  and still supports Mac OS 10.4 and 10.5\n\n2.5.1 (2008-05-28)\n------------------\n\n* Updated package to work with Mac OS 10.5 (Leopard), which ships with Python\n  2.5.1\n* Uses readline.c from Python 2.5.1 release\n* Updated to build against readline 5.2 (patch-level 12)\n* New maintainer: Ludwig Schwardt\n\n2.4.2 (2005-12-26)\n------------------\n\n* Original package by Bob Ippolito, supporting Python 2.3 / 2.4 on Mac OS 10.3\n  (Panther) and 10.4 (Tiger)\n* Builds against readline 5.1\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "The standard Python readline extension statically linked against the GNU readline library.",
    "version": "6.2.4.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8bcc379d9dd83424521faba0eb46a6ff",
                "sha256": "a5dbad674bd8e0caf86ddd9af493d53557d973e9666b4ee07377009c2bf75bb2"
            },
            "downloads": -1,
            "filename": "readline-6.2.4.2.tar.gz",
            "has_sig": true,
            "md5_digest": "8bcc379d9dd83424521faba0eb46a6ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.4",
            "size": 2315142,
            "upload_time": "2022-10-12T14:56:58",
            "upload_time_iso_8601": "2022-10-12T14:56:58.318738Z",
            "url": "https://files.pythonhosted.org/packages/38/ae/946d64a37437c3f99c72ebb11db4d399352df75526f01f7f5f3bb5f80c23/readline-6.2.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-10-12 14:56:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ludwigschwardt",
    "github_project": "python-gnureadline",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "readline"
}
        
Elapsed time: 0.02341s