1*635a8641SAndroid Build Coastguard Workerdiff --git a/third_party/ply/__init__.py b/third_party/ply/__init__.py 2*635a8641SAndroid Build Coastguard Workerindex 853a985..f3da03e 100644 3*635a8641SAndroid Build Coastguard Worker--- a/third_party/ply/__init__.py 4*635a8641SAndroid Build Coastguard Worker+++ b/third_party/ply/__init__.py 5*635a8641SAndroid Build Coastguard Worker@@ -1,4 +1,36 @@ 6*635a8641SAndroid Build Coastguard Worker # PLY package 7*635a8641SAndroid Build Coastguard Worker # Author: David Beazley ([email protected]) 8*635a8641SAndroid Build Coastguard Worker+# ----------------------------------------------------------------------------- 9*635a8641SAndroid Build Coastguard Worker+# ply: yacc.py 10*635a8641SAndroid Build Coastguard Worker+# 11*635a8641SAndroid Build Coastguard Worker+# Copyright (C) 2001-2011, 12*635a8641SAndroid Build Coastguard Worker+# David M. Beazley (Dabeaz LLC) 13*635a8641SAndroid Build Coastguard Worker+# All rights reserved. 14*635a8641SAndroid Build Coastguard Worker+# 15*635a8641SAndroid Build Coastguard Worker+# Redistribution and use in source and binary forms, with or without 16*635a8641SAndroid Build Coastguard Worker+# modification, are permitted provided that the following conditions are 17*635a8641SAndroid Build Coastguard Worker+# met: 18*635a8641SAndroid Build Coastguard Worker+# 19*635a8641SAndroid Build Coastguard Worker+# * Redistributions of source code must retain the above copyright notice, 20*635a8641SAndroid Build Coastguard Worker+# this list of conditions and the following disclaimer. 21*635a8641SAndroid Build Coastguard Worker+# * Redistributions in binary form must reproduce the above copyright notice, 22*635a8641SAndroid Build Coastguard Worker+# this list of conditions and the following disclaimer in the documentation 23*635a8641SAndroid Build Coastguard Worker+# and/or other materials provided with the distribution. 24*635a8641SAndroid Build Coastguard Worker+# * Neither the name of the David Beazley or Dabeaz LLC may be used to 25*635a8641SAndroid Build Coastguard Worker+# endorse or promote products derived from this software without 26*635a8641SAndroid Build Coastguard Worker+# specific prior written permission. 27*635a8641SAndroid Build Coastguard Worker+# 28*635a8641SAndroid Build Coastguard Worker+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 29*635a8641SAndroid Build Coastguard Worker+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 30*635a8641SAndroid Build Coastguard Worker+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 31*635a8641SAndroid Build Coastguard Worker+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 32*635a8641SAndroid Build Coastguard Worker+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 33*635a8641SAndroid Build Coastguard Worker+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 34*635a8641SAndroid Build Coastguard Worker+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 35*635a8641SAndroid Build Coastguard Worker+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 36*635a8641SAndroid Build Coastguard Worker+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 37*635a8641SAndroid Build Coastguard Worker+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 38*635a8641SAndroid Build Coastguard Worker+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 39*635a8641SAndroid Build Coastguard Worker+# ----------------------------------------------------------------------------- 40*635a8641SAndroid Build Coastguard Worker 41*635a8641SAndroid Build Coastguard Worker __all__ = ['lex','yacc'] 42