Skip to content

Commit 836b642

Browse files
Update comment in posixmodule.c (GH-5681)
A closing parentheses was missing. Signed-off-by: Ngie Cooper <[email protected]> (cherry picked from commit 7745ec4) Co-authored-by: ngie-eign <[email protected]>
1 parent 8771125 commit 836b642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3936,7 +3936,7 @@ posix_fork(PyObject *self, PyObject *noargs)
39363936
#ifdef HAVE_STROPTS_H
39373937
#include <stropts.h>
39383938
#endif
3939-
#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
3939+
#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) */
39403940

39413941
#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
39423942
PyDoc_STRVAR(posix_openpty__doc__,

0 commit comments

Comments
 (0)