diff options
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r-- | Lib/fnmatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py index ed815945e2..75d2d6eb43 100644 --- a/Lib/fnmatch.py +++ b/Lib/fnmatch.py @@ -36,7 +36,7 @@ def fnmatch(name, pat): return fnmatchcase(name, pat) def fnmatchcase(name, pat): - """Test wheter FILENAME matches PATTERN, including case. + """Test whether FILENAME matches PATTERN, including case. This is a version of fnmatch() which doesn't case-normalize its arguments. |