blob: 66c54e5069b918bfffd0f34eec3455ab57bcdf3d [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`macpath` --- MacOS 9 path manipulation functions
3======================================================
4
5.. module:: macpath
6 :synopsis: MacOS 9 path manipulation functions.
7
8
9This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path`
10module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X
11(or any other platform).
12
13The following functions are available in this module: :func:`normcase`,
14:func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`,
15:func:`isfile`, :func:`walk`, :func:`exists`. For other functions available in
16:mod:`os.path` dummy counterparts are available.
17