diff options
author | Georg Brandl <georg@python.org> | 2012-06-24 11:31:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-06-24 11:31:20 (GMT) |
commit | f62445ad30145e5e50c5b0ec9d979099b630039f (patch) | |
tree | f87f6ff8622a0c6a3c73baa41e8b14549b8804f4 /Doc | |
parent | 8a5555f79256eaf1e0ed3a466e0938c3b6886f45 (diff) | |
download | cpython-f62445ad30145e5e50c5b0ec9d979099b630039f.zip cpython-f62445ad30145e5e50c5b0ec9d979099b630039f.tar.gz cpython-f62445ad30145e5e50c5b0ec9d979099b630039f.tar.bz2 |
Fix casing of Unix.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b53780e..59b1d10 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -801,6 +801,7 @@ as internal buffering of data. .. versionadded:: 3.3 + .. function:: lseek(fd, pos, how) Set the current position of file descriptor *fd* to position *pos*, modified @@ -1952,8 +1953,8 @@ features: 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 @@ Miscellaneous Functions 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. |