diff options
author | Yonatan Goldschmidt <yon.goldschmidt@gmail.com> | 2021-02-01 15:46:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 15:46:38 (GMT) |
commit | 574aed16bfab1c5966af36ed6345d16ef119ac64 (patch) | |
tree | b0d813228b1aa45a459741872af7c401468e5985 /Lib/trace.py | |
parent | 0332e569c12d3dc97171546c6dc10e42c27de34b (diff) | |
download | cpython-574aed16bfab1c5966af36ed6345d16ef119ac64.zip cpython-574aed16bfab1c5966af36ed6345d16ef119ac64.tar.gz cpython-574aed16bfab1c5966af36ed6345d16ef119ac64.tar.bz2 |
Fix typo in Lib/trace.py (GH-24309)
Diffstat (limited to 'Lib/trace.py')
-rwxr-xr-x | Lib/trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index c505d8b..2cf3643 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) |