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 | 4bb09c843240afd0c3f3d502f411c01e585ad08d (patch) | |
tree | a017e2a4e3a3d579310fd709c4e0d923a04ac8b6 | |
parent | 9b2731bfdd9756592ae86b2b053969d40c9fa151 (diff) | |
download | cpython-4bb09c843240afd0c3f3d502f411c01e585ad08d.zip cpython-4bb09c843240afd0c3f3d502f411c01e585ad08d.tar.gz cpython-4bb09c843240afd0c3f3d502f411c01e585ad08d.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 3d492ba..20f3b25 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -379,7 +379,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. |