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 stefanholek
Recipients Alexander.Belopolsky, eric.araujo, georg.brandl, ronaldoussoren, stefanholek
Date 2010-03-09.21:24:15
SpamBayes Score 0.089576185
Marked as misclassified No
Message-id <1268169857.9.0.738573223251.issue6953@psf.upfronthosting.co.za>
In-reply-to
Content
To be zero-based, get_history_item would need to look like:

diff --git a/rl/readline.c b/rl/readline.c
index 33e9905..800bc00 100644
--- a/rl/readline.c
+++ b/rl/readline.c
@@ -559,7 +559,7 @@ get_history_item(PyObject *self, PyObject *args)
 
        if (!PyArg_ParseTuple(args, "i:index", &idx))
                return NULL;
-       if ((hist_ent = history_get(idx)))
+       if ((hist_ent = history_get(history_base + idx)))
                return PyString_FromString(hist_ent->line);
        else {
                Py_RETURN_NONE;
History
Date User Action Args
2010-03-09 21:24:18stefanholeksetrecipients: + stefanholek, georg.brandl, ronaldoussoren, eric.araujo, Alexander.Belopolsky
2010-03-09 21:24:17stefanholeksetmessageid: <1268169857.9.0.738573223251.issue6953@psf.upfronthosting.co.za>
2010-03-09 21:24:16stefanholeklinkissue6953 messages
2010-03-09 21:24:15stefanholekcreate