]> granicus.if.org Git - python/commit
Thomas Wouters <thomas@xs4all.net>:
authorFred Drake <fdrake@acm.org>
Wed, 28 Jun 2000 16:40:38 +0000 (16:40 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 28 Jun 2000 16:40:38 +0000 (16:40 +0000)
commit8cef4cf737878bd8eec648426eebe9b9019b18be
tree2fe93f0a2d3c9e22ad836a45bc7a526416c11c61
parent57823862683db7a463a134dbdf259d2e027619f6
Thomas Wouters <thomas@xs4all.net>:

This patch adds the openpty() and forkpty() library calls to posixmodule.c,
when they are available on the target
system. (glibc-2.1-based Linux systems, FreeBSD and BSDI at least, probably
the other BSD-based systems as well.)

Lib/pty.py is also rewritten to use openpty when available, but falls
back to the old SGI method or the "manual" BSD open-a-pty
code. Openpty() is necessary to use the Unix98 ptys under Linux 2.2,
or when using non-standard tty names under (at least) BSDI, which is
why I needed it, myself ;-) forkpty() is included for symmetry.
Lib/pty.py
Modules/posixmodule.c
configure
configure.in