]> granicus.if.org Git - python/commitdiff
Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.
authorNed Deily <nad@acm.org>
Fri, 27 Jun 2014 06:40:06 +0000 (23:40 -0700)
committerNed Deily <nad@acm.org>
Fri, 27 Jun 2014 06:40:06 +0000 (23:40 -0700)
Doc/library/os.rst
Lib/os.py

index 414c09efef80bf29e7755b68dc33fa66c49d239b..36dfc89146352927c82b27b3a7e77f61679de2ab 100644 (file)
@@ -53,7 +53,7 @@ Notes on the availability of these functions:
 .. data:: name
 
    The name of the operating system dependent module imported.  The following
-   names have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``,
+   names have currently been registered: ``'posix'``, ``'nt'``,
    ``'ce'``, ``'java'``.
 
    .. seealso::
@@ -1891,12 +1891,6 @@ features:
    * :attr:`st_gen` - file generation number
    * :attr:`st_birthtime` - time of file creation
 
-   On Mac OS systems, the following attributes may also be available:
-
-   * :attr:`st_rsize`
-   * :attr:`st_creator`
-   * :attr:`st_type`
-
    .. note::
 
       The exact meaning and resolution of the :attr:`st_atime`,
index 327656a10643f72dd3f30154fa683c6c0079711d..556f592526a668392d23169d3015f52e7e6f56a7 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -1,4 +1,4 @@
-r"""OS routines for Mac, NT, or Posix depending on what system we're on.
+r"""OS routines for NT or Posix depending on what system we're on.
 
 This exports:
   - all functions from posix, nt or ce, e.g. unlink, stat, etc.