diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-14 23:36:06 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-14 23:36:06 (GMT) |
commit | 88869f9787cd4ceb2298e4b13980beb057687824 (patch) | |
tree | 653976731f926b5e098bf57b4858a9516af220b5 /Lib/dospath.py | |
parent | 752d3f557e95cda98a8b50808cfe2f2d0b8767eb (diff) | |
download | cpython-88869f9787cd4ceb2298e4b13980beb057687824.zip cpython-88869f9787cd4ceb2298e4b13980beb057687824.tar.gz cpython-88869f9787cd4ceb2298e4b13980beb057687824.tar.bz2 |
Whitespace normalization.
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() |