Staging
v0.5.1
https://github.com/python/cpython
Revision 1691813106b64eb0d5f1bee0a569c5126b6b5690 authored by Gregory P. Smith on 02 May 2009, 19:01:54 UTC, committed by Gregory P. Smith on 02 May 2009, 19:01:54 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72210 | gregory.p.smith | 2009-05-02 11:58:21 -0700 (Sat, 02 May 2009) | 2 lines

  Convert test method names to PEP8 style.
........
1 parent db12d45
Raw File
Tip revision: 1691813106b64eb0d5f1bee0a569c5126b6b5690 authored by Gregory P. Smith on 02 May 2009, 19:01:54 UTC
Merged revisions 72210 via svnmerge from
Tip revision: 1691813
macpath.rst

:mod:`macpath` --- Mac OS 9 path manipulation functions
=======================================================

.. module:: macpath
   :synopsis: Mac OS 9 path manipulation functions.


This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path`
module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X
(or any other platform).

The following functions are available in this module: :func:`normcase`,
:func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`,
:func:`isfile`, :func:`walk`, :func:`exists`. For other functions available in
:mod:`os.path` dummy counterparts are available.

back to top