[Zope-ZEO] ZEO patches for NT

Jeffrey Kunce kuncej@mail.conservation.state.mo.us
Mon, 10 Jul 2000 15:06:16 -0500


>> 3)  In smac.py, replace line 90:
>>     import asyncore, string, struct, zLOG, sys, Acquisition
>> with these two lines:
>>     from ZServer.medusa import asyncore
>>     import string, struct, zLOG, sys, Acquisition

>I don't want to introduce a dependency on ZServer.

I just noticed that zeo\start.py attempts to import asyncore from ZServer first:

    try:
        from ZServer.medusa import asyncore
        sys.modules['asyncore']=asyncore
    except: pass


  --Jeff