Remove normcase(), it's not terribly useful and its presence can be misleading

This commit is contained in:
Antoine Pitrou 2013-11-17 20:19:10 +01:00
parent b20d53bfd6
commit 111b5e8681
1 changed files with 0 additions and 7 deletions

View File

@ -545,13 +545,6 @@ This behaviour respects the following expectations:
- Longer patterns can be used as well for more complex matching, e.g.
"/usr/foo/\*.py" matches "/usr/foo/bar.py".
``normcase()`` returns a case-folded version of the path for NT paths::
>>> PurePosixPath('CAPS').normcase()
PurePosixPath('CAPS')
>>> PureWindowsPath('CAPS').normcase()
PureWindowsPath('caps')
Concrete paths API
==================