From f15923902c4259978b952ed4b6aef2db4c9f430b Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Wed, 26 Aug 2015 15:33:20 +0300 Subject: remove old python --- external_libs/python/zmq/devices/__init__.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 external_libs/python/zmq/devices/__init__.py (limited to 'external_libs/python/zmq/devices/__init__.py') diff --git a/external_libs/python/zmq/devices/__init__.py b/external_libs/python/zmq/devices/__init__.py deleted file mode 100644 index 23715963..00000000 --- a/external_libs/python/zmq/devices/__init__.py +++ /dev/null @@ -1,16 +0,0 @@ -"""0MQ Device classes for running in background threads or processes.""" - -# Copyright (C) PyZMQ Developers -# Distributed under the terms of the Modified BSD License. - -from zmq import device -from zmq.devices import basedevice, proxydevice, monitoredqueue, monitoredqueuedevice - -from zmq.devices.basedevice import * -from zmq.devices.proxydevice import * -from zmq.devices.monitoredqueue import * -from zmq.devices.monitoredqueuedevice import * - -__all__ = ['device'] -for submod in (basedevice, proxydevice, monitoredqueue, monitoredqueuedevice): - __all__.extend(submod.__all__) -- cgit