diff options
author | Ned Deily <nad@acm.org> | 2014-06-18 13:09:40 -0700 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-06-18 13:09:40 -0700 |
commit | b7a9122f5b63c6d522c3988eff6a7fe57d009b3a (patch) | |
tree | 1a695ac47784ed9be8e50ad4cdc7d34204003532 | |
parent | 88468d1fb72adb7db528814b659b7c661727d6d2 (diff) | |
download | cpython-b7a9122f5b63c6d522c3988eff6a7fe57d009b3a.tar.gz |
Issue #3485: remove misleading comment
-rw-r--r-- | Lib/posixpath.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 3e13239022..eb17dbab07 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -48,7 +48,6 @@ def _get_sep(path): def normcase(s): """Normalize case of pathname. Has no effect under Posix""" - # TODO: on Mac OS X, this should really return s.lower(). if not isinstance(s, (bytes, str)): raise TypeError("normcase() argument must be str or bytes, " "not '{}'".format(s.__class__.__name__)) |