diff options
author | Thomas Kluyver <thomas@kluyver.me.uk> | 2020-05-16 19:24:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 19:24:44 +0100 |
commit | 02c38338b4ade8b0b0e85be613bc2b9dbfe68a7b (patch) | |
tree | fa784fb7ea4c22663b10be0c824e8ff45be38ad7 /doc | |
parent | 5da50dccbbdb10094837fe56399c5e885867c184 (diff) | |
parent | 787e78310dcde34be28fc2c1f5f2b6e69c66a45f (diff) | |
download | pexpect-git-master.tar.gz |
Spelling fixes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/history.rst | 2 | ||||
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | doc/overview.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/history.rst b/doc/history.rst index 7947ff5..68b5af1 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -44,7 +44,7 @@ Version 4.6 * The :meth:`.pxssh.login` method now supports an ``ssh_config`` parameter, which can be used to specify a file path to an SSH config file (:ghpull:`490`). -* Improved compatability for the ``crlf`` parameter of :class:`~.PopenSpawn` +* Improved compatibility for the ``crlf`` parameter of :class:`~.PopenSpawn` (:ghpull:`493`) * Fixed an issue in read timeout handling when using :class:`~.spawn` and :class:`~.fdspawn` with the ``use_poll`` parameter (:ghpull:`492`). diff --git a/doc/index.rst b/doc/index.rst index 0bcf862..83bb7f2 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -16,7 +16,7 @@ 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 +ssh, ftp, passwd, telnet, etc. It can be used to 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. Unlike diff --git a/doc/overview.rst b/doc/overview.rst index fcfe195..8e47ed0 100644 --- a/doc/overview.rst +++ b/doc/overview.rst @@ -162,7 +162,7 @@ to perform a regular expression match on a stream. Regular expressions need to look ahead. With a stream it is hard to look ahead because the process generating the stream may not be finished. There is no way to know if the process has paused momentarily or is finished and waiting for you. Pexpect must -implicitly always do a NON greedy match (minimal) at the end of a input. +implicitly always do a NON greedy match (minimal) at the end of input. Pexpect compiles all regular expressions with the :data:`re.DOTALL` flag. With the :data:`~re.DOTALL` flag, a ``"."`` will match a newline. |