diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 23:57:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 23:57:10 (GMT) |
commit | 5f401f10400123afa9171548c432ea3fc37c0736 (patch) | |
tree | ff6d1e214f02b837c06e1bdf7fcab735e7af612c /Objects/exceptions.c | |
parent | db72e58ea5940c3942ede9f70cb897510b52fc36 (diff) | |
download | cpython-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.c | 2 |
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) |