Sha256: e6d73771f8f1a22160145ea808c4012eaeadc046e3b593f477675e761b316dc2
Contents?: true
Size: 647 Bytes
Versions: 1
Compression:
Stored size: 647 Bytes
Contents
# -*- coding: utf-8 -*- """ Compatibility of :module:`collections` between different Python versions. """ from __future__ import absolute_import import warnings # pylint: disable=unused-import try: # -- SINCE: Python2.7 from collections import OrderedDict except ImportError: # pragma: no cover try: # -- BACK-PORTED FOR: Python 2.4 .. 2.6 from ordereddict import OrderedDict except ImportError: message = "collections.OrderedDict is missing: Install 'ordereddict'." warnings.warn(message) # -- BACKWARD-COMPATIBLE: Better than nothing (for behave use case). OrderedDict = dict
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
busser-behave-0.1.3 | vendor/behave/behave/compat/collections.py |