M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
12 lines
291 B
Python
12 lines
291 B
Python
from zmq.eventloop import zmqstream
|
|
from zmq.green.eventloop.ioloop import IOLoop
|
|
|
|
|
|
class ZMQStream(zmqstream.ZMQStream):
|
|
def __init__(self, socket, io_loop=None):
|
|
io_loop = io_loop or IOLoop.instance()
|
|
super().__init__(socket, io_loop=io_loop)
|
|
|
|
|
|
__all__ = ["ZMQStream"]
|