summaryrefslogtreecommitdiffstats
path: root/Objects/exceptions.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-06 23:57:10 (GMT)
committerGitHub <noreply@github.com>2021-10-06 23:57:10 (GMT)
commit5f401f10400123afa9171548c432ea3fc37c0736 (patch)
treeff6d1e214f02b837c06e1bdf7fcab735e7af612c /Objects/exceptions.c
parentdb72e58ea5940c3942ede9f70cb897510b52fc36 (diff)
downloadcpython-5f401f10400123afa9171548c432ea3fc37c0736.zip
cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.gz
cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.bz2
Fix typos in the Objects directory (GH-28766)
Diffstat (limited to 'Objects/exceptions.c')
-rw-r--r--Objects/exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c
index 714039e..a9ea42c 100644
--- a/Objects/exceptions.c
+++ b/Objects/exceptions.c
@@ -90,7 +90,7 @@ static void
BaseException_dealloc(PyBaseExceptionObject *self)
{
PyObject_GC_UnTrack(self);
- // bpo-44348: The trashcan mecanism prevents stack overflow when deleting
+ // bpo-44348: The trashcan mechanism prevents stack overflow when deleting
// long chains of exceptions. For example, exceptions can be chained
// through the __context__ attributes or the __traceback__ attribute.
Py_TRASHCAN_BEGIN(self, BaseException_dealloc)