mirror of
https://github.com/python/cpython.git
synced 2025-09-10 02:36:56 +00:00
* classobject.c: in instance_lenth, test result of call_object
for exception before using it. Fixed a few other places where the outcome of calling sq_length wasn't tested for exceptions (bltinmodule.c, ceval.c).
This commit is contained in:
parent
18fc5696c8
commit
d014ea6b5e
3 changed files with 6 additions and 0 deletions
|
@ -412,6 +412,8 @@ min_max(v, sign)
|
|||
return NULL;
|
||||
}
|
||||
n = (*sq->sq_length)(v);
|
||||
if (n < 0)
|
||||
return NULL;
|
||||
if (n == 0) {
|
||||
err_setstr(ValueError, "min() or max() of empty sequence");
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue