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/eventloop/minitornado/concurrent.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 external_libs/python/zmq/eventloop/minitornado/concurrent.py (limited to 'external_libs/python/zmq/eventloop/minitornado/concurrent.py') diff --git a/external_libs/python/zmq/eventloop/minitornado/concurrent.py b/external_libs/python/zmq/eventloop/minitornado/concurrent.py deleted file mode 100644 index 519b23d5..00000000 --- a/external_libs/python/zmq/eventloop/minitornado/concurrent.py +++ /dev/null @@ -1,11 +0,0 @@ -"""pyzmq does not ship tornado's futures, -this just raises informative NotImplementedErrors to avoid having to change too much code. -""" - -class NotImplementedFuture(object): - def __init__(self, *args, **kwargs): - raise NotImplementedError("pyzmq does not ship tornado's Futures, " - "install tornado >= 3.0 for future support." - ) - -Future = TracebackFuture = NotImplementedFuture -- cgit