(Some) new error handling.

This commit is contained in:
Guido van Rossum 1990-10-14 19:58:09 +00:00
parent 85a5fbbdfe
commit 3cf0ddfd94
1 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#include "funcobject.h"
#include "classobject.h"
#include "objimpl.h"
#include "errors.h"
typedef struct {
OB_HEAD
@ -71,7 +72,7 @@ class_getattr(op, name)
return v;
}
}
errno = ESRCH;
err_setstr(NameError, name);
return NULL;
}