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 --- .../python/zmq/backend/cython/__init__.py | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 external_libs/python/zmq/backend/cython/__init__.py (limited to 'external_libs/python/zmq/backend/cython/__init__.py') diff --git a/external_libs/python/zmq/backend/cython/__init__.py b/external_libs/python/zmq/backend/cython/__init__.py deleted file mode 100644 index e5358185..00000000 --- a/external_libs/python/zmq/backend/cython/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -"""Python bindings for core 0MQ objects.""" - -# Copyright (C) PyZMQ Developers -# Distributed under the terms of the Lesser GNU Public License (LGPL). - -from . import (constants, error, message, context, - socket, utils, _poll, _version, _device ) - -__all__ = [] -for submod in (constants, error, message, context, - socket, utils, _poll, _version, _device): - __all__.extend(submod.__all__) - -from .constants import * -from .error import * -from .message import * -from .context import * -from .socket import * -from ._poll import * -from .utils import * -from ._device import * -from ._version import * - -- cgit