summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-09-21 12:04:01 -0700
committerJeff Quast <contact@jeffquast.com>2015-09-21 12:05:34 -0700
commitba7e1c7a2e6caabb45c9e7231e00ba2837d264f0 (patch)
tree20a8b6438f69ce46ac83281765dadce5bbbe0bbf
parentf5993888e092bd8cecc98ac9558700d4fe8624cf (diff)
downloadpexpect-docfix-no-other-pexpect.tar.gz
Remove FAQ entry about other python expect effortsdocfix-no-other-pexpect
Noah's pexpect has been for as long as I can remember the most common python expect implementation, this entry no longer relevant.
-rw-r--r--doc/FAQ.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/FAQ.rst b/doc/FAQ.rst
index bec1c35..f4df226 100644
--- a/doc/FAQ.rst
+++ b/doc/FAQ.rst
@@ -21,15 +21,6 @@ previous example::
child = pexpect.spawn('/bin/bash', ['-c', shell_cmd])
child.expect(pexpect.EOF)
-**Q: Isn't there already a Python Expect?**
-
-A: Yes, there are several of them. They usually require you to compile C.
-I wanted something that was pure Python and preferably a single module
-that was simple to install. I also wanted something that was easy to use.
-This pure Python expect only became possible with the introduction of
-the pty module in the standard Python library. Previously, C extensions
-were required.
-
**Q: The `before` and `after` properties sound weird.**
A: This is how the -B and -A options in grep works, so that made it