Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(34) | Call(0) | Derive(0) | Import(34)
Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. Passes Python2.7's test suite and incorporates all the latest updates. Obtained from: http://code.activestate.com/recipes/576693-ordered-dictionary-for-py24/
src/p/y/python-pleskapi-0.1.2/lib/pleskapi/converter.py python-pleskapi(Download)
try: from collections import OrderedDict as odict except ImportError: try: import OrderedDict as odict except ImportError: odict = dict
src/p/s/psychopy_ext-0.5.1.2/psychopy_ext/stats.py psychopy_ext(Download)
try: import OrderedDict except: from exp import OrderedDict