diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-06-07 20:50:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-06-07 20:50:34 (GMT) |
commit | 4547d371c61e7a4bcc208264d698b805815bbd96 (patch) | |
tree | e8726f5e801c14df4d785fad2b44cbdf73e23b95 | |
parent | 3afd956e09b22558543994b80082e8f51151de5d (diff) | |
download | cpython-4547d371c61e7a4bcc208264d698b805815bbd96.zip cpython-4547d371c61e7a4bcc208264d698b805815bbd96.tar.gz cpython-4547d371c61e7a4bcc208264d698b805815bbd96.tar.bz2 |
specify that getuid() returns the real uid (closes #10503)
Patch by εσχατοκυριος.
-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 2149ae5..71133c4 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -257,7 +257,7 @@ process and user. .. index:: single: user; id - Return the current process's user id. + Return the current process's real user id. Availability: Unix. |