diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 23:21:04 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 23:21:04 +0000 |
commit | b95f38cacaaaa2aa5bfe545e54ae8dea566fb684 (patch) | |
tree | 1fc2de2ad45155c7186e73ac56bb5ee9bf52eacb /third_party/ply/LICENSE | |
parent | 2c831b235ec39e7e4258cfd93b735de06f079a0e (diff) | |
download | chromium_src-b95f38cacaaaa2aa5bfe545e54ae8dea566fb684.zip chromium_src-b95f38cacaaaa2aa5bfe545e54ae8dea566fb684.tar.gz chromium_src-b95f38cacaaaa2aa5bfe545e54ae8dea566fb684.tar.bz2 |
Add PLY (Python Lex Yacc)
Add third party python library PLY. This CL contains unmodified
soruces for lex.py, yacc.py, __init__.py and README. LICENSE is a
copy of the license from the README and README.chromium describes
the changes.
BUG=74978
TEST=none
Review URL: http://codereview.chromium.org/6673006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78122 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/ply/LICENSE')
-rw-r--r-- | third_party/ply/LICENSE | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/ply/LICENSE b/third_party/ply/LICENSE new file mode 100644 index 0000000..b273866 --- /dev/null +++ b/third_party/ply/LICENSE @@ -0,0 +1,30 @@ +PLY (Python Lex-Yacc) Version 3.4 + +Copyright (C) 2001-2011, +David M. Beazley (Dabeaz LLC) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the David Beazley or Dabeaz LLC may be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file |