[Python-checkins] Update comment in posixmodule.c (GH-5681)

Mariatta webhook-mailer at python.org
Wed Feb 14 14:54:37 EST 2018


https://github.com/python/cpython/commit/7745ec4e356ac1f4eaf43b155f4482c20a907d48
commit: 7745ec4e356ac1f4eaf43b155f4482c20a907d48
branch: master
author: ngie-eign <1574099+ngie-eign at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-02-14T11:54:28-08:00
summary:

Update comment in posixmodule.c (GH-5681)

A closing parentheses was missing.

Signed-off-by: Ngie Cooper <yaneurabeya at gmail.com>

files:
M Modules/posixmodule.c

diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 72fda6a21966..d242df0b6f31 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -6102,7 +6102,7 @@ os_sched_getaffinity_impl(PyObject *module, pid_t pid)
 #ifdef HAVE_STROPTS_H
 #include <stropts.h>
 #endif
-#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
+#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) */
 
 
 #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)



More information about the Python-checkins mailing list