blob: 2af51c66c50a356ffea347fe02a4468d2ac51271 [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
Victor Stinner89a1c932017-05-15 11:01:21 +02009.. deprecated-removed:: 3.7 3.8
10
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040011--------------
Georg Brandl116aa622007-08-15 14:28:22 +000012
13This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path`
14module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X
15(or any other platform).
16
17The 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