diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-01-01 17:53:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-01-01 17:53:47 (GMT) |
commit | 0e617e22f0bb5ea9ff90c50693335c22dc134007 (patch) | |
tree | 7ae2836a5207ecf1671fb503389baae880daa65b | |
parent | f1dcdd9ac5529aa4a28e70a4a3ac6a32bf18444f (diff) | |
download | cpython-0e617e22f0bb5ea9ff90c50693335c22dc134007.zip cpython-0e617e22f0bb5ea9ff90c50693335c22dc134007.tar.gz cpython-0e617e22f0bb5ea9ff90c50693335c22dc134007.tar.bz2 |
remove some copyright notices supserseded by the toplevel ones
-rw-r--r-- | Doc/README.txt | 24 | ||||
-rw-r--r-- | Modules/_collectionsmodule.c | 2 | ||||
-rw-r--r-- | Modules/itertoolsmodule.c | 2 | ||||
-rw-r--r-- | Objects/setobject.c | 3 |
4 files changed, 0 insertions, 31 deletions
diff --git a/Doc/README.txt b/Doc/README.txt index a494c89..d17d032 100644 --- a/Doc/README.txt +++ b/Doc/README.txt @@ -108,27 +108,3 @@ and we will process your request as soon as possible. If you want to help the Documentation Team, you are always welcome. Just send a mail to docs@python.org. - - -Copyright notice -================ - -The Python source is copyrighted, but you can freely use and copy it -as long as you don't change or remove the copyright notice: - ----------------------------------------------------------------------- -Copyright (c) 2000-2014 Python Software Foundation. -All rights reserved. - -Copyright (c) 2000 BeOpen.com. -All rights reserved. - -Copyright (c) 1995-2000 Corporation for National Research Initiatives. -All rights reserved. - -Copyright (c) 1991-1995 Stichting Mathematisch Centrum. -All rights reserved. - -See the file "license.rst" for information on usage and redistribution -of this file, and for a DISCLAIMER OF ALL WARRANTIES. ----------------------------------------------------------------------- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 3cf4764..dfebfb9 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -3,8 +3,6 @@ /* collections module implementation of a deque() datatype Written and maintained by Raymond D. Hettinger <python@rcn.com> - Copyright (c) 2004 Python Software Foundation. - All rights reserved. */ /* The block length may be set to any number over 1. Larger numbers diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 57a398f..b5859a9 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -4,8 +4,6 @@ /* Itertools module written and maintained by Raymond D. Hettinger <python@rcn.com> - Copyright (c) 2003-2013 Python Software Foundation. - All rights reserved. */ diff --git a/Objects/setobject.c b/Objects/setobject.c index ea5a24c..fc17fa5 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -2,9 +2,6 @@ /* set object implementation Written and maintained by Raymond D. Hettinger <python@rcn.com> Derived from Lib/sets.py and Objects/dictobject.c. - - Copyright (c) 2003-2008 Python Software Foundation. - All rights reserved. */ #include "Python.h" |