diff options
author | jonasdlindner <42033762+jonasdlindner@users.noreply.github.com> | 2022-04-09 09:12:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 09:12:15 (GMT) |
commit | f52d987abfda25e50469c9b6fe1d19f72453d2de (patch) | |
tree | 8c0bc048c8ae01dd4b0f009ce642981a485c2371 /Python | |
parent | 677320348728ce058fa3579017e985af74a236d4 (diff) | |
download | cpython-f52d987abfda25e50469c9b6fe1d19f72453d2de.zip cpython-f52d987abfda25e50469c9b6fe1d19f72453d2de.tar.gz cpython-f52d987abfda25e50469c9b6fe1d19f72453d2de.tar.bz2 |
Fix some typos in comments (GH-32422)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index cb739c1..f3d1c10 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1470,7 +1470,7 @@ eval_frame_handle_pending(PyThreadState *tstate) #define TRACE_FUNCTION_UNWIND() \ if (cframe.use_tracing) { \ /* Since we are already unwinding, \ - * we dont't care if this raises */ \ + * we don't care if this raises */ \ trace_function_exit(tstate, frame, NULL); \ } |