diff options
author | Georg Brandl <georg@python.org> | 2008-05-30 19:12:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-30 19:12:13 (GMT) |
commit | 6bb7bcf5f74dab90e9aab65fc33dfb5819aa9a17 (patch) | |
tree | 3a8285b50ff72f4750deec0fd4258d38ffd05e5c | |
parent | ef712d6fd37b7576c8fc27d711a8e5f71ca17c7f (diff) | |
download | cpython-6bb7bcf5f74dab90e9aab65fc33dfb5819aa9a17.zip cpython-6bb7bcf5f74dab90e9aab65fc33dfb5819aa9a17.tar.gz cpython-6bb7bcf5f74dab90e9aab65fc33dfb5819aa9a17.tar.bz2 |
getloadavg() is not available on Windows.
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 6964183..a85a04c 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2031,7 +2031,7 @@ Miscellaneous System Information Return the number of processes in the system run queue averaged over the last 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was - unobtainable. + unobtainable. Availability: Unix. .. versionadded:: 2.3 |