From: Ned Deily Date: Wed, 18 Jun 2014 20:09:40 +0000 (-0700) Subject: Issue #3485: remove misleading comment X-Git-Tag: v3.4.2rc1~360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217;p=python Issue #3485: remove misleading comment --- 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__))