aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/future/py2/http/cookiejar.py
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/py2/http/cookiejar.py
parent2d3a301d3ebf901baec1fdbc0fc5c6adf2683eaa (diff)
downloadydb-c61b1fabd502ba5dae5085785cb56e4ec724527b.tar.gz
Split future on py2/py3
Diffstat (limited to 'contrib/python/future/py2/http/cookiejar.py')
-rw-r--r--contrib/python/future/py2/http/cookiejar.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/python/future/py2/http/cookiejar.py b/contrib/python/future/py2/http/cookiejar.py
new file mode 100644
index 0000000000..d847b2bf2d
--- /dev/null
+++ b/contrib/python/future/py2/http/cookiejar.py
@@ -0,0 +1,6 @@
+from __future__ import absolute_import
+import sys
+
+assert sys.version_info[0] < 3
+
+from cookielib import *