diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-24 22:03:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-24 22:03:09 (GMT) |
commit | fb224e303435c9b98fd1a24dbd3cf119d7b90b6b (patch) | |
tree | efdfb790e02f85a43473200b26a01cabb2e1d1e3 /Lib/argparse.py | |
parent | 914bdbb4954a633357c42e290386ec2162470148 (diff) | |
download | cpython-fb224e303435c9b98fd1a24dbd3cf119d7b90b6b.zip cpython-fb224e303435c9b98fd1a24dbd3cf119d7b90b6b.tar.gz cpython-fb224e303435c9b98fd1a24dbd3cf119d7b90b6b.tar.bz2 |
replace copy right notice with simple attribution
Diffstat (limited to 'Lib/argparse.py')
-rw-r--r-- | Lib/argparse.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py index 836fa5c..47386ab 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1,16 +1,4 @@ -# Copyright 2006-2009 Steven J. Bethard <steven.bethard@gmail.com>. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. You may obtain a copy -# of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. +# Author: Steven J. Bethard <steven.bethard@gmail.com>. """Command-line parsing library |