From: Yonatan Goldschmidt Date: Mon, 1 Feb 2021 15:46:38 +0000 (+0200) Subject: Fix typo in Lib/trace.py (GH-24309) X-Git-Tag: v3.10.0a5~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=574aed16bfab1c5966af36ed6345d16ef119ac64;p=thirdparty%2FPython%2Fcpython.git Fix typo in Lib/trace.py (GH-24309) --- diff --git a/Lib/trace.py b/Lib/trace.py index c505d8bc72a9..2cf3643878d4 100755 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -116,7 +116,7 @@ class _Ignore: return 0 def _modname(path): - """Return a plausible module name for the patch.""" + """Return a plausible module name for the path.""" base = os.path.basename(path) filename, ext = os.path.splitext(base)