[python,guile] Add comment beside conditions testing empty arrays.
gdb/ChangeLog: * guile/scm-type.c (tyscm_array_1): Add comment. * python/py-type.c (typy_array_1): Add comment.
This commit is contained in:
parent
6f25f22356
commit
e810d75b1c
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-01-07 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* guile/scm-type.c (tyscm_array_1): Add comment.
|
||||
* python/py-type.c (typy_array_1): Add comment.
|
||||
|
||||
2015-01-06 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
|
||||
|
|
|
@ -713,7 +713,7 @@ tyscm_array_1 (SCM self, SCM n1_scm, SCM n2_scm, int is_vector,
|
|||
n1 = 0;
|
||||
}
|
||||
|
||||
if (n2 < n1 - 1)
|
||||
if (n2 < n1 - 1) /* Note: An empty array has n2 == n1 - 1. */
|
||||
{
|
||||
gdbscm_out_of_range_error (func_name, SCM_ARG3,
|
||||
scm_cons (scm_from_long (n1),
|
||||
|
|
|
@ -528,7 +528,7 @@ typy_array_1 (PyObject *self, PyObject *args, int is_vector)
|
|||
n1 = 0;
|
||||
}
|
||||
|
||||
if (n2 < n1 - 1)
|
||||
if (n2 < n1 - 1) /* Note: An empty array has n2 == n1 - 1. */
|
||||
{
|
||||
PyErr_SetString (PyExc_ValueError,
|
||||
_("Array length must not be negative"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue