]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Patch #1093585: raise a ValueError for negative history items in
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 27 Feb 2005 20:33:25 +0000 (20:33 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 27 Feb 2005 20:33:25 +0000 (20:33 +0000)
remove_history and replace_history. Will backport to 2.4.

Misc/NEWS
Modules/readline.c

index 7d6a9e6e1aa1253cf6619be125473e650577cbcb..68762a6f27fab19ce78d88b5e80c3d713faf00b3 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and builtins
 Extension Modules
 -----------------
 
+- Patch #1093585: raise a ValueError for negative history items in readline.
+  {remove_history,replace_history}
+
 - The spwd module has been added, allowing access to the shadow password
   database.
 
index 9d5a6bec6e1adff411fb370832a650b01a228a9e..706eb7a10e753933f358fa3e2010e505c0357844 100644 (file)
@@ -303,6 +303,11 @@ py_remove_history(PyObject *self, PyObject *args)
 
         if (!PyArg_ParseTuple(args, "i:remove_history", &entry_number))
                 return NULL;
+        if (entry_number < 0) {
+                PyErr_SetString(PyExc_ValueError,
+                                "History index cannot be negative");
+                return NULL;
+        }
         entry = remove_history(entry_number);
         if (!entry) {
                 PyErr_Format(PyExc_ValueError,
@@ -335,6 +340,11 @@ py_replace_history(PyObject *self, PyObject *args)
         if (!PyArg_ParseTuple(args, "is:replace_history", &entry_number, &line)) {
                 return NULL;
         }
+        if (entry_number < 0) {
+                PyErr_SetString(PyExc_ValueError,
+                                "History index cannot be negative");
+                return NULL;
+        }
         old_entry = replace_history_entry(entry_number, line, (void *)NULL);
         if (!old_entry) {
                 PyErr_Format(PyExc_ValueError,