diff options
author | Guido van Rossum <guido@python.org> | 1995-09-18 21:29:36 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-09-18 21:29:36 +0000 |
commit | ba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba (patch) | |
tree | 87e4e7ae1a2a9df946a430d1eac3f2f5d6b17ba4 /Python | |
parent | 0f805c47c5cbe18038962f095f5995bfcbeb0946 (diff) | |
download | cpython-ba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba.tar.gz |
spell TraceBack with capital B
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 | ||||
-rw-r--r-- | Python/traceback.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index d725d35664..be1e1745d8 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -912,7 +912,7 @@ eval_code2(co, globals, locals, DECREF(u); u = NULL; } - else if (!PyTraceback_Check(u)) { + else if (!PyTraceBack_Check(u)) { err_setstr(TypeError, "raise 3rd arg must be traceback or None"); goto raise_error; diff --git a/Python/traceback.c b/Python/traceback.c index 1f803da43b..57502a148c 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -68,8 +68,8 @@ tb_dealloc(tb) DEL(tb); } -#define Tracebacktype PyTraceback_Type -#define is_tracebackobject PyTraceback_Check +#define Tracebacktype PyTraceBack_Type +#define is_tracebackobject PyTraceBack_Check typeobject Tracebacktype = { OB_HEAD_INIT(&Typetype) |