summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-06-18 20:10:44 (GMT)
committerNed Deily <nad@acm.org>2014-06-18 20:10:44 (GMT)
commit205a55f5c60c50ce9a064432fdf90036690e41a1 (patch)
tree5ceb251174dc1719b6f62feaed32cffa22ac16a6
parent42653dfcf700b1ee4920e959d7f8a2319e2157fe (diff)
parent845fd9aa445f0a4a441fbe0bc3c1e1e318d1f217 (diff)
downloadcpython-205a55f5c60c50ce9a064432fdf90036690e41a1.zip
cpython-205a55f5c60c50ce9a064432fdf90036690e41a1.tar.gz
cpython-205a55f5c60c50ce9a064432fdf90036690e41a1.tar.bz2
Issue #3485: merge from 3.4
-rw-r--r--Lib/posixpath.py1
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__))