aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/future/queue
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2023-10-10 17:45:43 +0300
committershadchin <shadchin@yandex-team.com>2023-10-10 18:17:04 +0300
commitc61b1fabd502ba5dae5085785cb56e4ec724527b (patch)
tree5c988002f744a6897d2bd2be8daac8661bcea22c /contrib/python/future/queue
parent2d3a301d3ebf901baec1fdbc0fc5c6adf2683eaa (diff)
downloadydb-c61b1fabd502ba5dae5085785cb56e4ec724527b.tar.gz
Split future on py2/py3
Diffstat (limited to 'contrib/python/future/queue')
-rw-r--r--contrib/python/future/queue/__init__.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/contrib/python/future/queue/__init__.py b/contrib/python/future/queue/__init__.py
deleted file mode 100644
index 22bd296b63d..00000000000
--- a/contrib/python/future/queue/__init__.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from __future__ import absolute_import
-import sys
-__future_module__ = True
-
-if sys.version_info[0] < 3:
- from Queue import *
-else:
- raise ImportError('This package should not be accessible on Python 3. '
- 'Either you are trying to run from the python-future src folder '
- 'or your installation of python-future is corrupted.')