summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRed_M <pooatyou.com@gmail.com>2018-04-10 02:27:13 +1000
committerRed_M <pooatyou.com@gmail.com>2018-04-10 02:27:13 +1000
commitc4e3887d58a2d8a2d23cf7423e9f6752d948cc09 (patch)
tree6b0d4de97978ddc48bb29d6c163ba8b5d77a9e61 /doc
parent33ff83bd00d8cd99f39da5158b4963996297525b (diff)
downloadpexpect-git-c4e3887d58a2d8a2d23cf7423e9f6752d948cc09.tar.gz
typos.
Diffstat (limited to 'doc')
-rw-r--r--doc/history.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/history.rst b/doc/history.rst
index 4041b7d..6d5dc76 100644
--- a/doc/history.rst
+++ b/doc/history.rst
@@ -7,27 +7,27 @@ Releases
Version 4.5
```````````
-* :class:`~.spawn` + `~.fdspawn` now have an ``use_poll`` parameter.
+* :class:`~.spawn` + :class:`~.fdspawn` now have an ``use_poll`` parameter.
This change allows the use of select.poll() on file descriptors.
It allows for > 1024 file descriptors on the system, and, it is not used by
default due to compatibility concerns and must be explicitly enabled.
* :mod:`pexpect.pxssh` now has several new options in :meth:`pxssh.pxssh.login`.
-* :meth:`pxssh.pxssh.login` has `password_regex` which allows changing the password
- prompt regex for servers that include ``password:`` somewhere before a command
- line is reached.(:ghpull:`468`)
+* :meth:`pxssh.pxssh.login` has the option ``password_regex`` which allows changing
+ the password prompt regex for servers that include ``password:`` somewhere before a
+ command line is reached.(:ghpull:`468`)
* :meth:`pxssh.pxssh.login` now allows for setting up SSH tunnels to be requested once
- logged in to the rmeote server. (:ghpull:`473`)
+ logged in to the rmeote server. This option is ``ssh_tunnels`` (:ghpull:`473`)
The structure should be like this::
{ 'local': ['2424:localhost:22'], # Local SSH tunnels
'remote': ['2525:localhost:22'], # Remote SSH tunnels
'dynamic': [8888] } # Dynamic/SOCKS tunnels
-* :meth:`pxssh.pxssh.login` allows subsequent logins from the remote session and treats
- the session as if it was local. (:ghpull:`472`)
-* :meth:`pxssh.pxssh.login` can allow the the prompt to not be set to something unique
- incase the remote server is sensetive to new lines at login. (:ghpull:`468`)
-* :meth:`pxssh.pxssh.login` has had a change with an SSH key being provided which is
+* :meth:`pxssh.pxssh.login` ``spawn_local_ssh`` allows subsequent logins from the remote session and treats
+ the session as if it was local. Simply set this to ``False``. (:ghpull:`472`)
+* :meth:`pxssh.pxssh.login` ``sync_original_prompt`` can allow the the prompt to not be set to something unique
+ incase the remote server is sensetive to new lines at login. Set this to ``False`` to do so. (:ghpull:`468`)
+* :meth:`pxssh.pxssh.login` has had a change with an SSH key option being provided, which is
if ``ssh_key`` is set to ``True`` then the SSH client forces forwarding the authentication
agent to the remote server. (:ghpull:`473`)