diff options
author | Guido van Rossum <guido@python.org> | 1993-03-16 12:15:04 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-03-16 12:15:04 +0000 |
commit | 7116ecb7b4f20aaf3503c9a6ba497217c9b3c7e3 (patch) | |
tree | 2f552bdd33269dadf8f0ac97b4890d6f48b8feab /Python/errors.c | |
parent | e7d6d2537c308a128f2ba5332d0495bae9936abc (diff) | |
download | cpython-7116ecb7b4f20aaf3503c9a6ba497217c9b3c7e3.tar.gz |
* Changed many files to use mkvalue() instead of newtupleobject().
* Fixcprt.py: added [-y file] option, do only files younger than file.
* modsupport.[ch]: added vmkvalue().
* intobject.c: use mkvalue().
* stringobject.c: added "formatstring"; renamed string* to string_*;
ceval.c: call formatstring for string % value.
* longobject.c: close memory leak in divmod.
* parsetok.c: set result node to NULL when returning an error.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Python/errors.c b/Python/errors.c index 5814dd749d..9f53255188 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -1,6 +1,6 @@ /*********************************************************** -Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The -Netherlands. +Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, +Amsterdam, The Netherlands. All Rights Reserved @@ -56,6 +56,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "allobjects.h" +#include "modsupport.h" #include <errno.h> #ifndef errno @@ -153,13 +154,11 @@ err_errno(exc) err_set(KeyboardInterrupt); return NULL; } - v = newtupleobject(2); + v = mkvalue("(is)", errno, strerror(errno)); if (v != NULL) { - settupleitem(v, 0, newintobject((long)errno)); - settupleitem(v, 1, newstringobject(strerror(errno))); + err_setval(exc, v); + DECREF(v); } - err_setval(exc, v); - XDECREF(v); return NULL; } |