[Python-checkins] cpython: Fix casing of Unix.

georg.brandl python-checkins at python.org
Sun Jun 24 13:31:26 CEST 2012


http://hg.python.org/cpython/rev/6ee694254266
changeset:   77700:6ee694254266
user:        Georg Brandl <georg at python.org>
date:        Sun Jun 24 13:31:20 2012 +0200
summary:
  Fix casing of Unix.

files:
  Doc/library/os.rst |  7 ++++---
  1 files changed, 4 insertions(+), 3 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -801,6 +801,7 @@
 
    .. versionadded:: 3.3
 
+
 .. function:: lseek(fd, pos, how)
 
    Set the current position of file descriptor *fd* to position *pos*, modified
@@ -1952,8 +1953,8 @@
 
        os.stat in os.supports_dir_fd
 
-   Currently *dir_fd* parameters only work on UNIX platforms;
-   none of them work on Windows.
+   Currently *dir_fd* parameters only work on Unix platforms; none of them work
+   on Windows.
 
    .. versionadded:: 3.3
 
@@ -3308,6 +3309,6 @@
 
    This function returns random bytes from an OS-specific randomness source.  The
    returned data should be unpredictable enough for cryptographic applications,
-   though its exact quality depends on the OS implementation.  On a UNIX-like
+   though its exact quality depends on the OS implementation.  On a Unix-like
    system this will query /dev/urandom, and on Windows it will use CryptGenRandom.
    If a randomness source is not found, :exc:`NotImplementedError` will be raised.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list