From 2ea2b06c7dcc41538790cc4cef5bc3e709b80762 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 21 Aug 2024 16:45:04 -0400 Subject: [PATCH] fix comment typo --- asyncio/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncio/core.py b/asyncio/core.py index 2409d8f..8937eba 100644 --- a/asyncio/core.py +++ b/asyncio/core.py @@ -428,7 +428,7 @@ def default_exception_handler(loop, context): # CIRCUITPY-CHANGE: doc """The default exception handler that is called.""" - # CIRCUITPY_CHANGE: use CircuitPython traceback printing + # CIRCUITPY-CHANGE: use CircuitPython traceback printing exc = context["exception"] print_exception(None, exc, exc.__traceback__)