(original) (raw)

changeset: 79473:b08416a31d15 user: Jesus Cea jcea@jcea.es date: Fri Oct 05 01:11:10 2012 +0200 files: Doc/library/os.path.rst Doc/library/os.rst Doc/library/sys.rst Doc/library/sysconfig.rst description: #16135: Removal of OS/2 support (Docs) diff -r ffc6e6b00949 -r b08416a31d15 Doc/library/os.path.rst --- a/Doc/library/os.path.rst Fri Oct 05 01:04:27 2012 +0200 +++ b/Doc/library/os.path.rst Fri Oct 05 01:11:10 2012 +0200 @@ -37,7 +37,6 @@ * :mod:`posixpath` for UNIX-style paths * :mod:`ntpath` for Windows paths * :mod:`macpath` for old-style MacOS paths - * :mod:`os2emxpath` for OS/2 EMX paths .. function:: abspath(path) diff -r ffc6e6b00949 -r b08416a31d15 Doc/library/os.rst --- a/Doc/library/os.rst Fri Oct 05 01:04:27 2012 +0200 +++ b/Doc/library/os.rst Fri Oct 05 01:11:10 2012 +0200 @@ -54,7 +54,7 @@ The name of the operating system dependent module imported. The following names have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``, - ``'os2'``, ``'ce'``, ``'java'``. + ``'ce'``, ``'java'``. .. seealso:: :attr:`sys.platform` has a finer granularity. :func:`os.uname` gives diff -r ffc6e6b00949 -r b08416a31d15 Doc/library/sys.rst --- a/Doc/library/sys.rst Fri Oct 05 01:04:27 2012 +0200 +++ b/Doc/library/sys.rst Fri Oct 05 01:11:10 2012 +0200 @@ -837,8 +837,6 @@ Windows ``'win32'`` Windows/Cygwin ``'cygwin'`` Mac OS X ``'darwin'`` - OS/2 ``'os2'`` - OS/2 EMX ``'os2emx'`` ================ =========================== .. versionchanged:: 3.3 @@ -1117,7 +1115,6 @@ | :const:`name` | Name of the thread implementation: | | | | | | * ``'nt'``: Windows threads | - | | * ``'os2'``: OS/2 threads | | | * ``'pthread'``: POSIX threads | | | * ``'solaris'``: Solaris threads | +------------------+---------------------------------------------------------+ diff -r ffc6e6b00949 -r b08416a31d15 Doc/library/sysconfig.rst --- a/Doc/library/sysconfig.rst Fri Oct 05 01:04:27 2012 +0200 +++ b/Doc/library/sysconfig.rst Fri Oct 05 01:11:10 2012 +0200 @@ -83,8 +83,6 @@ located under the user home directory. - *nt*: scheme for NT platforms like Windows. - *nt_user*: scheme for NT platforms, when the *user* option is used. -- *os2*: scheme for OS/2 platforms. -- *os2_home*: scheme for OS/2 patforms, when the *user* option is used. Each scheme is itself composed of a series of paths and each path has a unique identifier. Python currently uses eight paths: /jcea@jcea.es