From 5c867018f0a152ce785d2dbd475648914b1cb2ce Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Thu, 26 Jun 2014 23:40:06 -0700 Subject: [PATCH] Issue #21875: Remove vestigial references to Classic Mac OS in os module docs. --- Doc/library/os.rst | 8 +------- Lib/os.py | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 414c09efef8..36dfc891463 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -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`, diff --git a/Lib/os.py b/Lib/os.py index 327656a1064..556f592526a 100644 --- 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.