diff options
author | David Malcolm <dmalcolm@redhat.com> | 2009-11-16 14:19:02 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2009-11-16 14:19:02 -0500 |
commit | 254f88a995334acfe04b5774a6be048a365cdb86 (patch) | |
tree | 1219c6c4220b90078ec323a62782ddcb46dd21d3 /validate.py | |
parent | 41a0e658a2db1c95bb9ca9ad7dc55a3d7d57e8a4 (diff) | |
download | check-cpython-254f88a995334acfe04b5774a6be048a365cdb86.tar.gz check-cpython-254f88a995334acfe04b5774a6be048a365cdb86.tar.xz check-cpython-254f88a995334acfe04b5774a6be048a365cdb86.zip |
Add LGPLv2.1 license to .cocci and .py file; introduce PyArg_ParseTupleAndKeywords, reworking cocci file somewhat
Diffstat (limited to 'validate.py')
-rw-r--r-- | validate.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/validate.py b/validate.py index ced4611..786d7c0 100644 --- a/validate.py +++ b/validate.py @@ -1,3 +1,19 @@ +# -*- coding: utf-8 -*- +# +# Copyright © 2009 Red Hat, Inc. +# +# This software is licensed to you under the GNU Lesser General Public +# License, version 2.1 (LGPLv2.1). There is NO WARRANTY for this software, +# express or implied, including the implied warranties of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. You should have received a copy of +# LGPLv2.1 along with this software; if not, see +# http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +# +# Red Hat trademarks are not licensed under LGPLv2.1. No permission is +# granted to use or replicate Red Hat trademarks that are incorporated in +# this software or its documentation. +# +# Red Hat Author(s): David Hugh Malcolm <dmalcolm@redhat.com> """ Hooks for validating CPython extension source code """ |