~gesha/linaro-license-protection/add-ordereddict-class

« back to all changes in this revision

Viewing changes to license_protected_downloads/OrderedDict.py

  • Committer: Georgy Redkozubov
  • Date: 2012-10-23 19:09:07 UTC
  • Revision ID: georgy.redkozubov@linaro.org-20121023190907-5d0slcl8azn6nlaa
Added reference to the original site

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy.
2
2
# Passes Python2.7's test suite and incorporates all the latest updates.
 
3
#
 
4
# This code was taken from http://code.activestate.com/recipes/576693/
3
5
 
4
6
try:
5
7
    from thread import get_ident as _get_ident