diff options
author | Guido van Rossum <guido@python.org> | 1995-09-18 21:31:16 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-09-18 21:31:16 +0000 |
commit | cd7caee131194c8529d3e79b8244e1445985896a (patch) | |
tree | 52f7df3d25d729ef567cb0a925a6d66735e57243 /Python/errors.c | |
parent | ba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba (diff) | |
download | cpython-cd7caee131194c8529d3e79b8244e1445985896a.tar.gz |
remove unwanted fatal() from err_badcall()
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index 0249fd99e9..3c721b8ff6 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -194,6 +194,5 @@ err_errno(exc) void err_badcall() { - fatal("err_badcall() called"); err_setstr(SystemError, "bad argument to internal function"); } |