summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-08-28 02:55:48 +0000
committerGuido van Rossum <guido@python.org>1995-08-28 02:55:48 +0000
commite01a53e91acb8ffb3c4d1766d2d224530448f9b3 (patch)
treeb212bc5b8f82a1fa1b8e301474a638db7fdf95e1 /Python
parente6c7ba86d341aebfedb6a1f6bb7e57aef53cbb68 (diff)
downloadcpython-e01a53e91acb8ffb3c4d1766d2d224530448f9b3.tar.gz
err_badcall() is fatal error
Diffstat (limited to 'Python')
-rw-r--r--Python/errors.c1
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");
}