summaryrefslogtreecommitdiff
path: root/pexpect/pty_spawn.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2015-10-03 11:57:35 +0100
committerThomas Kluyver <takowl@gmail.com>2015-10-03 11:57:35 +0100
commit26ff2f390a8d3179fef2bf1dba715fa0dcf886e8 (patch)
treeddacab825be4219d3edc71676336a42674baf19a /pexpect/pty_spawn.py
parent55d7aad50d9808be6eed989b5676b19b1a09ffe7 (diff)
parent84f3e245b27f96c559a984039099c74569f8ae64 (diff)
downloadpexpect-git-26ff2f390a8d3179fef2bf1dba715fa0dcf886e8.tar.gz
Merge pull request #146 from takluyver/popen
WIP: Add spawn class based on subprocess.Popen
Diffstat (limited to 'pexpect/pty_spawn.py')
-rw-r--r--pexpect/pty_spawn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pexpect/pty_spawn.py b/pexpect/pty_spawn.py
index 7280a01..09c008b 100644
--- a/pexpect/pty_spawn.py
+++ b/pexpect/pty_spawn.py
@@ -407,7 +407,7 @@ class spawn(SpawnBase):
then this will raise a TIMEOUT exception.
The timeout refers only to the amount of time to read at least one
- character. This is not effected by the 'size' parameter, so if you call
+ character. This is not affected by the 'size' parameter, so if you call
read_nonblocking(size=100, timeout=30) and only one character is
available right away then one character will be returned immediately.
It will not wait for 30 seconds for another 99 characters to come in.