summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2009-08-10 01:43:32 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2009-08-10 01:43:32 +0000
commit595ed5b5af319ad32cbb68474edf46d2f6d0f2fd (patch)
tree979eca6abc3e16962d4ec209dd62a5f0747b4d48
parent60ae79204cc011d712581895527bbf56d3a866b5 (diff)
downloadpyserial-git-595ed5b5af319ad32cbb68474edf46d2f6d0f2fd.tar.gz
doc change only
-rw-r--r--pyserial/serial/rfc2217.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyserial/serial/rfc2217.py b/pyserial/serial/rfc2217.py
index b130f5e..fbcf1ed 100644
--- a/pyserial/serial/rfc2217.py
+++ b/pyserial/serial/rfc2217.py
@@ -827,13 +827,13 @@ else:
pass
-# ###
+#############################################################################
# The following is code that helps implementing an RFC2217 server.
class PortManager(object):
"""This class manages the state of Telnet and RFC2217. It needs a serial
instance and a connection to work with. connection is expected to implement
- a thread safe write function"""
+ a (thread safe) write function, that writes the string to the network."""
def __init__(self, serial_port, connection, debug_output=False):
self.serial = serial_port