Message100757
| 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; |
|