diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-09-29 05:44:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-29 05:44:27 (GMT) |
commit | 288d1daadaddf6ae35cf666138ba4b5d07449657 (patch) | |
tree | 1cfefe910f99901373d7253bf9be9c5074dee0ea /Modules | |
parent | a106aec2ed6ba171838ca7e6ba43c4e722bbecd1 (diff) | |
download | cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.zip cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.tar.gz cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.tar.bz2 |
remove support for BSD/OS (closes bpo-31624) (#3812)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 83135e5..13ff916 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3967,7 +3967,7 @@ os_nice_impl(PyObject *module, int increment) /* There are two flavours of 'nice': one that returns the new priority (as required by almost all standards out there) and the - Linux/FreeBSD/BSDI one, which returns '0' on success and advices + Linux/FreeBSD one, which returns '0' on success and advices the use of getpriority() to get the new priority. If we are of the nice family that returns the new priority, we |