1 :mod:`macpath` --- Mac OS 9 path manipulation functions 2 ======================================================= 3 4 .. module:: macpath 5 :synopsis: Mac OS 9 path manipulation functions. 6 7 **Source code:** :source:`Lib/macpath.py` 8 9 .. deprecated-removed:: 3.7 3.8 10 11 -------------- 12 13 This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path` 14 module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X 15 (or any other platform). 16 17 The following functions are available in this module: :func:`normcase`, 18 :func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`, 19 :func:`isfile`, :func:`walk`, :func:`exists`. For other functions available in 20 :mod:`os.path` dummy counterparts are available. 21 22