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

Miss Islington (bot) webhook-mailer at python.org
Wed Feb 14 16:16:40 EST 2018


https://github.com/python/cpython/commit/f62a9d41b518cc325964d6a3f723fcada340efce
commit: f62a9d41b518cc325964d6a3f723fcada340efce
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-02-14T13:16:36-08:00
summary:

Update comment in posixmodule.c (GH-5681)


A closing parentheses was missing.

Signed-off-by: Ngie Cooper <yaneurabeya at gmail.com>
(cherry picked from commit 7745ec4e356ac1f4eaf43b155f4482c20a907d48)

Co-authored-by: ngie-eign <1574099+ngie-eign at users.noreply.github.com>

files:
M Modules/posixmodule.c

diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 80b1fbdfd253..85ec255fcb4f 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -5780,7 +5780,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