Return -1 for errors.

This commit is contained in:
Guido van Rossum 1990-12-20 23:12:40 +00:00
parent 6c4f4a92ac
commit 73531a3bae
3 changed files with 3 additions and 3 deletions

View file

@ -107,7 +107,7 @@ module_setattr(m, name, v)
{
if (strcmp(name, "__dict__") == 0 || strcmp(name, "__name__") == 0) {
err_setstr(NameError, "can't assign to reserved member name");
return NULL;
return -1;
}
if (v == NULL)
return dictremove(m->md_dict, name);