| Index: pylib/gyp/ordered_dict.py
|
| diff --git a/pylib/gyp/ordered_dict.py b/pylib/gyp/ordered_dict.py
|
| index 083b9f1ab3a3723d80bfd59afbf2fb17a252977e..a3609add40d4053ce0a7997ea35860447e1791e3 100644
|
| --- a/pylib/gyp/ordered_dict.py
|
| +++ b/pylib/gyp/ordered_dict.py
|
| @@ -1,9 +1,30 @@
|
| # Unmodified from http://code.activestate.com/recipes/576693/
|
| +# other than to add MIT license header (as specified on page, but not in code).
|
| # Linked from Python documentation here:
|
| # http://docs.python.org/2/library/collections.html#collections.OrderedDict
|
| #
|
| # This should be deleted once Py2.7 is available on all bots, see
|
| # http://crbug.com/241769.
|
| +#
|
| +# Copyright (c) 2009 Raymond Hettinger.
|
| +#
|
| +# Permission is hereby granted, free of charge, to any person obtaining a copy
|
| +# of this software and associated documentation files (the "Software"), to deal
|
| +# in the Software without restriction, including without limitation the rights
|
| +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| +# copies of the Software, and to permit persons to whom the Software is
|
| +# furnished to do so, subject to the following conditions:
|
| +#
|
| +# The above copyright notice and this permission notice shall be included in
|
| +# all copies or substantial portions of the Software.
|
| +#
|
| +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| +# THE SOFTWARE.
|
|
|
| # 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.
|
|
|