diff options
author | Guido van Rossum <guido@python.org> | 1990-10-14 20:02:48 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-14 20:02:48 +0000 |
commit | 4e24ce559783096e2045ba36037a7cb19dc4e9bd (patch) | |
tree | fa8f3c557b166cfd645bec6a8a6c84cfd887261d /Python/modsupport.c | |
parent | c56ee6dc3ef8553261c2f7f6db42b12efe68e4e3 (diff) | |
download | cpython-4e24ce559783096e2045ba36037a7cb19dc4e9bd.tar.gz |
Move err_badarg() and err_nomme() to errors.c.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r-- | Python/modsupport.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c index eed7bddf2d..159f98e1c6 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -58,22 +58,6 @@ initmodule(name, methods) } -/* Convenience functions to set a type error exception and return 0 */ - -int -err_badarg() -{ - err_setstr(TypeError, "illegal argument type for built-in function"); - return 0; -} - -object * -err_nomem() -{ - err_setstr(MemoryError, "in built-in function"); - return NULL; -} - /* Argument list handling tools. All return 1 for success, or call err_set*() and return 0 for failure */ |