summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 15:35:29 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 15:35:29 -0800
commit5681b8c25a7b7d441b05b2f04ec057d5d2fb3510 (patch)
tree28634e37b9b2c27b4c9da75c8fc615d750ebeb47
parent0b2d523665f3989d9375cd83970400ace0e40336 (diff)
Pipe
-rw-r--r--paramiko/pipe.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/paramiko/pipe.py b/paramiko/pipe.py
index db43d549..705f8d49 100644
--- a/paramiko/pipe.py
+++ b/paramiko/pipe.py
@@ -17,11 +17,12 @@
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
"""
-Abstraction of a one-way pipe where the read end can be used in select().
-Normally this is trivial, but Windows makes it nearly impossible.
+Abstraction of a one-way pipe where the read end can be used in
+`select.select`. Normally this is trivial, but Windows makes it nearly
+impossible.
The pipe acts like an Event, which can be set or cleared. When set, the pipe
-will trigger as readable in select().
+will trigger as readable in `select <select.select>`.
"""
import sys