From 94ec2f0c0a6fc30fb3a9a11243146e0d878c4c5b Mon Sep 17 00:00:00 2001 From: imarom Date: Sun, 20 Mar 2016 11:49:17 +0200 Subject: ZMQ CEL5.9 / 32 bit / 64 bit with python 2 / python 3 --- .../cel59/python3/32bit/zmq/green/eventloop/zmqstream.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/external_libs/pyzmq-14.5.0/cel59/python3/32bit/zmq/green/eventloop/zmqstream.py (limited to 'scripts/external_libs/pyzmq-14.5.0/cel59/python3/32bit/zmq/green/eventloop/zmqstream.py') diff --git a/scripts/external_libs/pyzmq-14.5.0/cel59/python3/32bit/zmq/green/eventloop/zmqstream.py b/scripts/external_libs/pyzmq-14.5.0/cel59/python3/32bit/zmq/green/eventloop/zmqstream.py new file mode 100644 index 00000000..90fbd1f5 --- /dev/null +++ b/scripts/external_libs/pyzmq-14.5.0/cel59/python3/32bit/zmq/green/eventloop/zmqstream.py @@ -0,0 +1,11 @@ +from zmq.eventloop.zmqstream import * + +from zmq.green.eventloop.ioloop import IOLoop + +RealZMQStream = ZMQStream + +class ZMQStream(RealZMQStream): + + def __init__(self, socket, io_loop=None): + io_loop = io_loop or IOLoop.instance() + super(ZMQStream, self).__init__(socket, io_loop=io_loop) -- cgit 1.2.3-korg