Commit 2fa249a0 authored by Jim Fulton's avatar Jim Fulton

Got rid of duplicated "static" data.

parent 14ebbc29
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
"""Sized message async connections """Sized message async connections
""" """
__version__ = "$Revision: 1.8 $"[11:-2] __version__ = "$Revision: 1.9 $"[11:-2]
import asyncore, string, struct, zLOG, sys, Acquisition import asyncore, string, struct, zLOG, sys, Acquisition
from zLOG import LOG, TRACE, ERROR, INFO from zLOG import LOG, TRACE, ERROR, INFO
...@@ -114,7 +114,7 @@ class SizedMessageAsyncConnection(Acquisition.Explicit, asyncore.dispatcher): ...@@ -114,7 +114,7 @@ class SizedMessageAsyncConnection(Acquisition.Explicit, asyncore.dispatcher):
def handle_read(self, def handle_read(self,
join=string.join, StringType=type(''), _type=type, join=string.join, StringType=type(''), _type=type,
StringType=type(''), _None=None): _None=None):
d=self.recv(8096) d=self.recv(8096)
if not d: return if not d: return
......
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
"""Sized message async connections """Sized message async connections
""" """
__version__ = "$Revision: 1.8 $"[11:-2] __version__ = "$Revision: 1.9 $"[11:-2]
import asyncore, string, struct, zLOG, sys, Acquisition import asyncore, string, struct, zLOG, sys, Acquisition
from zLOG import LOG, TRACE, ERROR, INFO from zLOG import LOG, TRACE, ERROR, INFO
...@@ -114,7 +114,7 @@ class SizedMessageAsyncConnection(Acquisition.Explicit, asyncore.dispatcher): ...@@ -114,7 +114,7 @@ class SizedMessageAsyncConnection(Acquisition.Explicit, asyncore.dispatcher):
def handle_read(self, def handle_read(self,
join=string.join, StringType=type(''), _type=type, join=string.join, StringType=type(''), _type=type,
StringType=type(''), _None=None): _None=None):
d=self.recv(8096) d=self.recv(8096)
if not d: return if not d: return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment