summaryrefslogtreecommitdiffstats
path: root/Lib/telnetlib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-15 03:26:36 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-15 03:26:36 (GMT)
commitb90f89a496676ec714e111a747344600f3988496 (patch)
tree161c61762992b5c1588c9a49f557ad88b31b091f /Lib/telnetlib.py
parent495ad3c8ccb9ed3554177a3e8687676c78e667de (diff)
downloadcpython-b90f89a496676ec714e111a747344600f3988496.zip
cpython-b90f89a496676ec714e111a747344600f3988496.tar.gz
cpython-b90f89a496676ec714e111a747344600f3988496.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/telnetlib.py')
-rw-r--r--Lib/telnetlib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/telnetlib.py b/Lib/telnetlib.py
index dfd549e..d2d0b9b 100644
--- a/Lib/telnetlib.py
+++ b/Lib/telnetlib.py
@@ -11,7 +11,7 @@ Example:
>>> print tn.read_all()
Login Name TTY Idle When Where
guido Guido van Rossum pts/2 <Dec 2 11:10> snag.cnri.reston..
-
+
>>>
Note that read_all() won't read until eof -- it just reads some data
@@ -250,7 +250,7 @@ class Telnet:
def read_very_eager(self):
"""Read everything that's possible without blocking in I/O (eager).
-
+
Raise EOFError if connection closed and no cooked data
available. Return '' if no cooked data available otherwise.
Don't block unless in the midst of an IAC sequence.
@@ -278,7 +278,7 @@ class Telnet:
def read_lazy(self):
"""Process and return data that's already in the queues (lazy).
-
+
Raise EOFError if connection closed and no data available.
Return '' if no cooked data available otherwise. Don't block
unless in the midst of an IAC sequence.