SF.net SVN: fclient: [320] trunk/sandbox/fcp2/test_fcp
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <ju...@us...> - 2008-03-06 12:09:50
|
Revision: 320
http://fclient.svn.sourceforge.net/fclient/?rev=320&view=rev
Author: jurner
Date: 2008-03-06 04:09:53 -0800 (Thu, 06 Mar 2008)
Log Message:
-----------
removed dummy socket. Use io now
Modified Paths:
--------------
trunk/sandbox/fcp2/test_fcp/dummy_io.py
trunk/sandbox/fcp2/test_fcp/test_client.py
Modified: trunk/sandbox/fcp2/test_fcp/dummy_io.py
===================================================================
--- trunk/sandbox/fcp2/test_fcp/dummy_io.py 2008-03-06 12:08:50 UTC (rev 319)
+++ trunk/sandbox/fcp2/test_fcp/dummy_io.py 2008-03-06 12:09:53 UTC (rev 320)
@@ -20,7 +20,7 @@
#********************************************************************
#
#********************************************************************
-class TestIO(iohandler.IOObject):
+class DummyIO(iohandler.IOObject):
def __init__(self, ):
self.readBuffer = '' # buffer client reads from
Modified: trunk/sandbox/fcp2/test_fcp/test_client.py
===================================================================
--- trunk/sandbox/fcp2/test_fcp/test_client.py 2008-03-06 12:08:50 UTC (rev 319)
+++ trunk/sandbox/fcp2/test_fcp/test_client.py 2008-03-06 12:09:53 UTC (rev 320)
@@ -26,7 +26,7 @@
del hack
#<-- rel import hack
-from dummy_socket import TestIO
+from dummy_io import DummyIO
#***********************************************************************************
#
#***********************************************************************************
@@ -45,7 +45,7 @@
debugVerbosity=Client.consts.DebugVerbosity.Quiet
)
- fcpClient.ioHandler.setIOPrototype(TestIO)
+ fcpClient.ioHandler.setIOPrototype(DummyIO)
#fcpClient.connect()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|