mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 17:52:02 +02:00
Cleanup previous PR
This commit is contained in:
@@ -292,7 +292,7 @@ copy_line_to(LineBuf *self, PyObject *args) {
|
|||||||
unsigned int y;
|
unsigned int y;
|
||||||
Line src, *dest;
|
Line src, *dest;
|
||||||
if (!PyArg_ParseTuple(args, "IO!", &y, &Line_Type, &dest)) return NULL;
|
if (!PyArg_ParseTuple(args, "IO!", &y, &Line_Type, &dest)) return NULL;
|
||||||
if (y >= self->ynum) { PyErr_SetString(PyExc_ValueError, "Out of bounds"); return NULL; }
|
if (y >= self->ynum) { PyErr_SetString(PyExc_IndexError, "Out of bounds"); return NULL; }
|
||||||
src.xnum = self->xnum; dest->xnum = self->xnum;
|
src.xnum = self->xnum; dest->xnum = self->xnum;
|
||||||
dest->ynum = y;
|
dest->ynum = y;
|
||||||
dest->attrs = self->line_attrs[y];
|
dest->attrs = self->line_attrs[y];
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ class TestDataTypes(BaseTest):
|
|||||||
l2 = lb.create_line_copy(2)
|
l2 = lb.create_line_copy(2)
|
||||||
lb.copy_line_to(1, l2)
|
lb.copy_line_to(1, l2)
|
||||||
self.ae(l2, lb2.line(2))
|
self.ae(l2, lb2.line(2))
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(IndexError):
|
||||||
lb.copy_line_to(lb.ynum, l2)
|
lb.copy_line_to(lb.ynum, l2)
|
||||||
lb.clear_line(0)
|
lb.clear_line(0)
|
||||||
self.ae(lb.line(0), LineBuf(1, lb.xnum).create_line_copy(0))
|
self.ae(lb.line(0), LineBuf(1, lb.xnum).create_line_copy(0))
|
||||||
|
|||||||
Reference in New Issue
Block a user