• Home
  • History
  • Annotate
  • only in /external/chromium_org/third_party/pexpect/
NameDateSize

..12-Mar-20154 KiB

ANSI.py12-Mar-201512.3 KiB

fdpexpect.py12-Mar-20153.3 KiB

FSM.py12-Mar-201513.9 KiB

LICENSE12-Mar-2015931

OWNERS12-Mar-201538

pexpect.py12-Mar-201575.5 KiB

PKG-INFO12-Mar-2015287

pxssh.py12-Mar-201515.9 KiB

README12-Mar-20152.1 KiB

README.chromium12-Mar-2015424

screen.py12-Mar-201511 KiB

README

1Pexpect is a Pure Python Expect-like module
2
3Pexpect makes Python a better tool for controlling other applications.
4
5Pexpect is a pure Python module for spawning child applications; controlling
6them; and responding to expected patterns in their output. Pexpect works like
7Don Libes' Expect. Pexpect allows your script to spawn a child application and
8control it as if a human were typing commands.
9
10Pexpect can be used for automating interactive applications such as ssh, ftp,
11passwd, telnet, etc. It can be used to a automate setup scripts for duplicating
12software package installations on different servers. It can be used for
13automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
14Pexpect is pure Python. Unlike other Expect-like modules for Python, Pexpect
15does not require TCL or Expect nor does it require C extensions to be compiled.
16It should work on any platform that supports the standard Python pty module.
17The Pexpect interface was designed to be easy to use.
18
19If you want to work with the development version of the source code then please
20read the DEVELOPERS document in the root of the source code tree.
21
22Free, open source, and all that good stuff.
23http://pexpect.sourceforge.net/
24
25PEXPECT LICENSE
26
27    This license is approved by the OSI and FSF as GPL-compatible.
28        http://opensource.org/licenses/isc-license.txt
29
30    Copyright (c) 2012, Noah Spurrier <noah@noah.org>
31    PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY
32    PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE
33    COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES.
34    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
35    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
36    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
37    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
38    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
39    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
40    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
41
42

README.chromium

1Name: pexpect
2Short Name: pexpect
3URL: http://www.noah.org/python/pexpect/
4Version: 2.3
5Date: 2008-01-05
6Revision: r533
7License: MIT
8License File: NOT_SHIPPED
9Security Critical: no
10
11Description:
12Pexpect is a pure Python module for spawning child applications; controlling them; and responding to expected patterns in their output.
13
14Local Modifications:
15Only the required files from pexpect-2.3 distribution have been added.
16