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/backend/cffi/__init__.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 external_libs/python/zmq/backend/cffi/__init__.py (limited to 'external_libs/python/zmq/backend/cffi/__init__.py') diff --git a/external_libs/python/zmq/backend/cffi/__init__.py b/external_libs/python/zmq/backend/cffi/__init__.py deleted file mode 100644 index ca3164d3..00000000 --- a/external_libs/python/zmq/backend/cffi/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -"""CFFI backend (for PyPY)""" - -# Copyright (C) PyZMQ Developers -# Distributed under the terms of the Modified BSD License. - -from zmq.backend.cffi import (constants, error, message, context, socket, - _poll, devices, utils) - -__all__ = [] -for submod in (constants, error, message, context, socket, - _poll, devices, utils): - __all__.extend(submod.__all__) - -from .constants import * -from .error import * -from .message import * -from .context import * -from .socket import * -from .devices import * -from ._poll import * -from ._cffi import zmq_version_info, ffi -from .utils import * -- cgit