diff options
author | Ned Deily <nad@acm.org> | 2014-06-18 20:09:40 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-06-18 20:09:40 (GMT) |
commit | 845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217 (patch) | |
tree | e54d7171e9410a06fcfd0237edb850ca4fa4817f | |
parent | 8909127af2e986b3655037897d88471c411edb62 (diff) | |
download | cpython-845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217.zip cpython-845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217.tar.gz cpython-845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217.tar.bz2 |
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 3e13239..eb17dba 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__)) |