Commit 8d8f874c authored by Georg Brandl's avatar Georg Brandl

Fix versions and spacing.

parent 5afa6d4d
...@@ -173,19 +173,22 @@ process and user. ...@@ -173,19 +173,22 @@ process and user.
Return the parent's process id. Availability: Unix. Return the parent's process id. Availability: Unix.
.. function:: getresuid() .. function:: getresuid()
Return a tuple (ruid, euid, suid) denoting the current process's Return a tuple (ruid, euid, suid) denoting the current process's
real, effective, and saved user ids. Availability: Unix. real, effective, and saved user ids. Availability: Unix.
.. versionadded:: 2.7/3.2 .. versionadded:: 2.7
.. function:: getresgid() .. function:: getresgid()
Return a tuple (rgid, egid, sgid) denoting the current process's Return a tuple (rgid, egid, sgid) denoting the current process's
real, effective, and saved user ids. Availability: Unix. real, effective, and saved user ids. Availability: Unix.
.. versionadded:: 2.7/3.2 .. versionadded:: 2.7
.. function:: getuid() .. function:: getuid()
...@@ -264,19 +267,22 @@ process and user. ...@@ -264,19 +267,22 @@ process and user.
Set the current process's real and effective group ids. Availability: Unix. Set the current process's real and effective group ids. Availability: Unix.
.. function:: setresgid(rgid, egid, sgid) .. function:: setresgid(rgid, egid, sgid)
Set the current process's real, effective, and saved group ids. Set the current process's real, effective, and saved group ids.
Availability: Unix. Availability: Unix.
.. versionadded:: 2.7/3.2 .. versionadded:: 2.7
.. function:: setresuid(ruid, euid, suid) .. function:: setresuid(ruid, euid, suid)
Set the current process's real, effective, and saved user ids. Set the current process's real, effective, and saved user ids.
Availibility: Unix. Availibility: Unix.
.. versionadded:: 2.7/3.2 .. versionadded:: 2.7
.. function:: setreuid(ruid, euid) .. function:: setreuid(ruid, euid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment