Add new Agent class to Python API, for writing Store agents

This commit is contained in:
alexhudson
2011-01-01 23:24:22 +00:00
parent c4c2dac754
commit d9e27643d2
3 changed files with 34 additions and 3 deletions
+1 -2
View File
@@ -381,7 +381,7 @@ class StoreClient:
self.stream = self.connection.stream
if eventCallback:
self.stream.setEventCallback(callback)
self.stream.setEventCallback(eventCallback)
# if we authed with a cookie or password, we don't need to USER
if not authCookie and not authPassword and user is not None:
@@ -947,5 +947,4 @@ class StoreClient:
def Reset(self) :
self.stream.Write("RESET\r\n")
self.stream.GetResponse()