[Python-checkins] cpython (3.4): Issue #3485: remove misleading comment

ned.deily python-checkins at python.org
Wed Jun 18 22:11:48 CEST 2014


http://hg.python.org/cpython/rev/a854d23305de
changeset:   91265:a854d23305de
branch:      3.4
parent:      91263:4cf322536328
user:        Ned Deily <nad at acm.org>
date:        Wed Jun 18 13:09:40 2014 -0700
summary:
  Issue #3485: remove misleading comment

files:
  Lib/posixpath.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/posixpath.py b/Lib/posixpath.py
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -48,7 +48,6 @@
 
 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__))

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list