SF.net SVN: fclient: [383] trunk/sandbox/fcp2/iohandler.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-04-09 07:35:10
|
Revision: 383
http://fclient.svn.sourceforge.net/fclient/?rev=383&view=rev
Author: jUrner
Date: 2008-04-09 00:35:09 -0700 (Wed, 09 Apr 2008)
Log Message:
-----------
adapt docs
Modified Paths:
--------------
trunk/sandbox/fcp2/iohandler.py
Modified: trunk/sandbox/fcp2/iohandler.py
===================================================================
--- trunk/sandbox/fcp2/iohandler.py 2008-04-09 07:32:18 UTC (rev 382)
+++ trunk/sandbox/fcp2/iohandler.py 2008-04-09 07:35:09 UTC (rev 383)
@@ -60,8 +60,8 @@
"""Should read n bytes from the device
@return: always None
- @raise L{IOBroken}: in case something goes wrong
- @raise L{IOTimeout}: if the read operation times out
+ @raise L{consts.IOBrokenError}: in case something goes wrong
+ @raise L{consts.IOTimeoutError}: if the read operation times out
"""
raise consts.IOBrokenError('Broken', consts.Logger.IO.error)
@@ -69,7 +69,7 @@
"""Should write bytes to the device
@return: always None
- @raise L{IOBroken}: in case something goes wrong
+ @raise L{consts.IOBrokenError}: in case something goes wrong
"""
raise consts.IOBrokenError('Broken', consts.Logger.IO.error)
@@ -77,7 +77,7 @@
"""Should close the io device
@return: always None
- @raise L{IOClosed}: if the device is already closed
+ @raise L{consts.IOClosedError}: if the device is already closed
"""
raise consts.IOClosedError('Closed', consts.Logger.IO.error)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|