SF.net SVN: fclient: [397] trunk/sandbox/fcp2/iohandler.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-04-09 22:33:34
|
Revision: 397
http://fclient.svn.sourceforge.net/fclient/?rev=397&view=rev
Author: jUrner
Date: 2008-04-09 14:46:20 -0700 (Wed, 09 Apr 2008)
Log Message:
-----------
fixed docs
Modified Paths:
--------------
trunk/sandbox/fcp2/iohandler.py
Modified: trunk/sandbox/fcp2/iohandler.py
===================================================================
--- trunk/sandbox/fcp2/iohandler.py 2008-04-09 21:46:05 UTC (rev 396)
+++ trunk/sandbox/fcp2/iohandler.py 2008-04-09 21:46:20 UTC (rev 397)
@@ -48,7 +48,7 @@
@param kwargs: any additional keyword arguments passed to L{IOHandler.connect}
@return: always None
- @raise L{IOConnectFailed}: in case something goes wrong
+ @raise L{consts.IOConnectFailedError}: in case something goes wrong
"""
raise consts.IOConnectFailedError('Failed', consts.Logger.IO.error)
@@ -167,7 +167,7 @@
def __init__(self, ioPrototype=SocketIO):
"""
- @paran ioPrototype: (L{IOObjectBase}) derrived class to handle message io
+ @param ioPrototype: (L{IOObjectBase}) derrived class to handle message io
"""
self._ioPrototype = ioPrototype
self._receiveBuffer = ''
@@ -327,7 +327,7 @@
"""Sends a message to freenet
@param msg: (Message) message to send
@return: Message
- @raise L{IOBroken}: if the connection to the io dies unexpectedly
+ @raise L{consts.IOBrokenError}: if the connection to the io dies unexpectedly
"""
consts.Logger.IOHandler.debug(consts.LogMessages.Sending + msg.pprint())
self.io.write(msg.toString())
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|