blob: b08bbe08093dab800c48cd611d1f248e28f1043b [file] [log] [blame]
Georg Brandlc575c902008-09-13 17:46:05 +00001:mod:`macpath` --- Mac OS 9 path manipulation functions
2=======================================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
4.. module:: macpath
Georg Brandlc575c902008-09-13 17:46:05 +00005 :synopsis: Mac OS 9 path manipulation functions.
Georg Brandl116aa622007-08-15 14:28:22 +00006
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04007**Source code:** :source:`Lib/macpath.py`
8
9--------------
Georg Brandl116aa622007-08-15 14:28:22 +000010
11This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path`
12module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X
13(or any other platform).
14
15The following functions are available in this module: :func:`normcase`,
16:func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`,
17:func:`isfile`, :func:`walk`, :func:`exists`. For other functions available in
18:mod:`os.path` dummy counterparts are available.
19