diff options
Diffstat (limited to 'Lib/dospath.py')
-rw-r--r-- | Lib/dospath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/dospath.py b/Lib/dospath.py index 17db624..c4846ba 100644 --- a/Lib/dospath.py +++ b/Lib/dospath.py @@ -10,8 +10,8 @@ def normcase(s): backslashes. Other normalizations (such as optimizing '../' away) are not allowed (this is done by normpath). - Previously, this version mapped invalid consecutive characters to a - single '_', but this has been removed. This functionality should + Previously, this version mapped invalid consecutive characters to a + single '_', but this has been removed. This functionality should possibly be added as a new function.""" return s.replace("/", "\\").lower() |