]> granicus.if.org Git - python/commitdiff
Issue #12326: document the recommended idiom for checking sys.platform on Unix systems.
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 9 Jul 2011 13:54:23 +0000 (15:54 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 9 Jul 2011 13:54:23 +0000 (15:54 +0200)
Also, point to the various alternatives.

Doc/library/os.rst
Doc/library/sys.rst

index c412ee17fd82db0becb65521c9483497ff03fcc8..5c84e85ca9631b5fbb89b7c6a592bb249c0fddf1 100644 (file)
@@ -61,6 +61,13 @@ Notes on the availability of these functions:
    names have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``,
    ``'os2'``, ``'ce'``, ``'java'``.
 
+   .. seealso::
+      :attr:`sys.platform` has a finer granularity.  :func:`os.uname` gives
+      system-dependent version information.
+
+      The :mod:`platform` module provides detailed checks for the
+      system's identity.
+
 
 .. _os-filenames:
 
index ae2dbf3044a151a6aa2e05764a40729a4af5a5d7..95dc6623395fbf3b81e0e9f700c472918070a4b1 100644 (file)
@@ -714,6 +714,12 @@ always available.
    For Unix systems, this is the lowercased OS name as returned by ``uname -s``
    with the first part of the version as returned by ``uname -r`` appended,
    e.g. ``'sunos5'`` or ``'linux2'``, *at the time when Python was built*.
+   Unless you want to test for a specific system version, it is therefore
+   recommended to use the following idiom::
+
+      if sys.platform.startswith('linux'):
+          # Linux-specific code here...
+
    For other systems, the values are:
 
    ================ ===========================
@@ -726,6 +732,12 @@ always available.
    OS/2 EMX         ``'os2emx'``
    ================ ===========================
 
+   .. seealso::
+      :attr:`os.name` has a coarser granularity.  :func:`os.uname` gives
+      system-dependent version information.
+
+      The :mod:`platform` module provides detailed checks for the
+      system's identity.
 
 .. data:: prefix