summaryrefslogtreecommitdiff
path: root/Include/traceback.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-09-18 21:29:36 +0000
committerGuido van Rossum <guido@python.org>1995-09-18 21:29:36 +0000
commitba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba (patch)
tree87e4e7ae1a2a9df946a430d1eac3f2f5d6b17ba4 /Include/traceback.h
parent0f805c47c5cbe18038962f095f5995bfcbeb0946 (diff)
downloadcpython-ba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba.tar.gz
spell TraceBack with capital B
Diffstat (limited to 'Include/traceback.h')
-rw-r--r--Include/traceback.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/traceback.h b/Include/traceback.h
index ad37dd9cc8..20a556b7dc 100644
--- a/Include/traceback.h
+++ b/Include/traceback.h
@@ -38,8 +38,8 @@ int PyTraceBack_Store Py_PROTO((PyObject *));
int PyTraceBack_Print Py_PROTO((PyObject *, PyObject *));
/* Reveale traceback type so we can typecheck traceback objects */
-extern PyTypeObject PyTraceback_Type;
-#define PyTraceback_Check(v) ((v)->ob_type == &PyTraceback_Type)
+extern PyTypeObject PyTraceBack_Type;
+#define PyTraceBack_Check(v) ((v)->ob_type == &PyTraceBack_Type)
#ifdef __cplusplus
}