diff options
author | Guido van Rossum <guido@python.org> | 1995-08-28 02:55:48 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-08-28 02:55:48 +0000 |
commit | e01a53e91acb8ffb3c4d1766d2d224530448f9b3 (patch) | |
tree | b212bc5b8f82a1fa1b8e301474a638db7fdf95e1 /Python | |
parent | e6c7ba86d341aebfedb6a1f6bb7e57aef53cbb68 (diff) | |
download | cpython-e01a53e91acb8ffb3c4d1766d2d224530448f9b3.tar.gz |
err_badcall() is fatal error
Diffstat (limited to 'Python')
-rw-r--r-- | Python/errors.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/errors.c b/Python/errors.c index 3c721b8ff6..0249fd99e9 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -194,5 +194,6 @@ err_errno(exc) void err_badcall() { + fatal("err_badcall() called"); err_setstr(SystemError, "bad argument to internal function"); } |