How to use the vine.five function in vine

To help you get started, we’ve selected a few vine examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github celery / celery / celery / five.py View on Github external
# -*- coding: utf-8 -*-
"""Python 2/3 compatibility utilities."""
from __future__ import absolute_import, unicode_literals

import sys

import vine.five

sys.modules[__name__] = vine.five
github celery / kombu / kombu / five.py View on Github external
# -*- coding: utf-8 -*-
"""Python 2/3 Compatibility."""
from __future__ import absolute_import, unicode_literals

import sys
import vine.five

sys.modules[__name__] = vine.five