- Supports DESTDIR
- Accept Python 2.5
No ChangeLog, but it adds three new modules:
SCREEN: This implements a virtual screen
ANSI: This implements an ANSI terminal emulator as a subclass of screen
FSM: This module implements a Finite State Machine (FSM)
additional modules:
- pxssh
Pexpect SSH is an extension of 'pexpect.spawn' that specializes in SSH.
- fdpexpect
fdpexpect extension of 'pexpect.spawn' that uses an open file descriptor.
Update approved by Min Sik Kim.
Pexpect makes Python a better glue for controlling child applications.
Pexpect is a pure Python module for spawning child applications;
controlling them; and responding to expected patterns in their
output. Pexpect works like Don Libes' Expect. Pexpect allows your
script to spawn a child application and control it as if a human were
typing commands.
Pexpect can be used for automating interactive applications such as
ssh, ftp, passwd, telnet, etc. It can be used to a automate setup
scripts for duplicating software package installations on different
servers. It can be used for automated software testing. Pexpect is
in the spirit of Don Libes' Expect, but Pexpect is pure Python. The
Pexpect interface was designed to be easy to use.