diff options
author | Guido van Rossum <guido@python.org> | 1992-09-04 09:45:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-04 09:45:18 (GMT) |
commit | 94472a0374f68fc7c746671eb87dc32253b02f05 (patch) | |
tree | 2771e08e0f6355403716eac5d9db818643f7d732 /Objects/xxobject.c | |
parent | 9a4e3fc56a2bacc7af884117c53b37fdf104daa2 (diff) | |
download | cpython-94472a0374f68fc7c746671eb87dc32253b02f05.zip cpython-94472a0374f68fc7c746671eb87dc32253b02f05.tar.gz cpython-94472a0374f68fc7c746671eb87dc32253b02f05.tar.bz2 |
classobject.c moduleobject.c stdwinmodule.c xxobject.c:
raise AttributeError, not KeyError, when attribute deletion fails.
sunaudiodevmodule.c: check for deletion before calling setmember.
Diffstat (limited to 'Objects/xxobject.c')
-rw-r--r-- | Objects/xxobject.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Objects/xxobject.c b/Objects/xxobject.c index 7ab7a73..8471893 100644 --- a/Objects/xxobject.c +++ b/Objects/xxobject.c @@ -110,8 +110,13 @@ xx_setattr(xp, name, v) if (xp->x_attr == NULL) return -1; } - if (v == NULL) - return dictremove(xp->x_attr, name); + if (v == NULL) { + int rv = dictremove(xp->x_attr, name); + if (rv < 0) + err_setstr(AttributeError, + "delete non-existing xx attribute"); + return rv; + } else return dictinsert(xp->x_attr, name, v); } |