diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-04 23:11:10 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-04 23:11:10 (GMT) |
commit | f6c2e894aec9c373b658b0aaa13d7e54da10f3ad (patch) | |
tree | 1787fb338d0b786f35f6fdcb30998aa87cfd97cc | |
parent | b48925a4060243688c108d0df1e102eb7a1580d0 (diff) | |
download | cpython-f6c2e894aec9c373b658b0aaa13d7e54da10f3ad.zip cpython-f6c2e894aec9c373b658b0aaa13d7e54da10f3ad.tar.gz cpython-f6c2e894aec9c373b658b0aaa13d7e54da10f3ad.tar.bz2 |
#16135: Removal of OS/2 support (Docs)
-rw-r--r-- | Doc/library/os.path.rst | 1 | ||||
-rw-r--r-- | Doc/library/os.rst | 2 | ||||
-rw-r--r-- | Doc/library/sys.rst | 3 | ||||
-rw-r--r-- | Doc/library/sysconfig.rst | 2 |
4 files changed, 1 insertions, 7 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 20a84b6..1053fa3 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -37,7 +37,6 @@ applications should use string objects to access all files. * :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 --git a/Doc/library/os.rst b/Doc/library/os.rst index 5f149cb..802868d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -54,7 +54,7 @@ Notes on the availability of these functions: 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 --git a/Doc/library/sys.rst b/Doc/library/sys.rst index cd6d4bf..0da2be8 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -837,8 +837,6 @@ always available. Windows ``'win32'`` Windows/Cygwin ``'cygwin'`` Mac OS X ``'darwin'`` - OS/2 ``'os2'`` - OS/2 EMX ``'os2emx'`` ================ =========================== .. versionchanged:: 3.3 @@ -1117,7 +1115,6 @@ always available. | :const:`name` | Name of the thread implementation: | | | | | | * ``'nt'``: Windows threads | - | | * ``'os2'``: OS/2 threads | | | * ``'pthread'``: POSIX threads | | | * ``'solaris'``: Solaris threads | +------------------+---------------------------------------------------------+ diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index c47dcce..535ac54 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -83,8 +83,6 @@ Python currently supports seven schemes: 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: |