summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/email/__init__.py2
-rw-r--r--Lib/email/_parseaddr.py2
-rw-r--r--Lib/email/base64mime.py2
-rw-r--r--Lib/email/charset.py2
-rw-r--r--Lib/email/encoders.py2
-rw-r--r--Lib/email/errors.py2
-rw-r--r--Lib/email/feedparser.py2
-rw-r--r--Lib/email/generator.py2
-rw-r--r--Lib/email/header.py2
-rw-r--r--Lib/email/iterators.py2
-rw-r--r--Lib/email/message.py2
-rw-r--r--Lib/email/mime/application.py2
-rw-r--r--Lib/email/mime/audio.py2
-rw-r--r--Lib/email/mime/base.py2
-rw-r--r--Lib/email/mime/image.py2
-rw-r--r--Lib/email/mime/message.py2
-rw-r--r--Lib/email/mime/multipart.py2
-rw-r--r--Lib/email/mime/nonmultipart.py2
-rw-r--r--Lib/email/mime/text.py2
-rw-r--r--Lib/email/parser.py2
-rw-r--r--Lib/email/quoprimime.py2
-rw-r--r--Lib/email/utils.py2
-rw-r--r--Lib/functools.py2
-rw-r--r--Lib/optparse.py2
-rw-r--r--Lib/test/test_csv.py2
-rw-r--r--Lib/test/test_email/test_asian_codecs.py2
-rw-r--r--Lib/test/test_email/test_email.py2
-rw-r--r--Lib/test/test_email/torture_test.py2
-rw-r--r--Lib/test/test_plistlib.py2
-rw-r--r--Lib/textwrap.py2
-rw-r--r--Lib/unittest/__init__.py2
-rw-r--r--Lib/wsgiref/headers.py2
32 files changed, 32 insertions, 32 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py
index 9fa4778..6d59700 100644
--- a/Lib/email/__init__.py
+++ b/Lib/email/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py
index 36625e3..8491703 100644
--- a/Lib/email/_parseaddr.py
+++ b/Lib/email/_parseaddr.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2007 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Contact: email-sig@python.org
"""Email address parsing code.
diff --git a/Lib/email/base64mime.py b/Lib/email/base64mime.py
index d440de9..a5a3f73 100644
--- a/Lib/email/base64mime.py
+++ b/Lib/email/base64mime.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2007 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Author: Ben Gertzfield
# Contact: email-sig@python.org
diff --git a/Lib/email/charset.py b/Lib/email/charset.py
index cfd5a0c..5036c3f 100644
--- a/Lib/email/charset.py
+++ b/Lib/email/charset.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Ben Gertzfield, Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py
index 17bd1ab..55741a2 100644
--- a/Lib/email/encoders.py
+++ b/Lib/email/encoders.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/errors.py b/Lib/email/errors.py
index 02aa5ec..6bc744b 100644
--- a/Lib/email/errors.py
+++ b/Lib/email/errors.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/feedparser.py b/Lib/email/feedparser.py
index 06d6b4a..b2bc4af 100644
--- a/Lib/email/feedparser.py
+++ b/Lib/email/feedparser.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004-2006 Python Software Foundation
+# Copyright (C) 2004 Python Software Foundation
# Authors: Baxter, Wouters and Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/generator.py b/Lib/email/generator.py
index 205caf0..ab5bd06 100644
--- a/Lib/email/generator.py
+++ b/Lib/email/generator.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2010 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/header.py b/Lib/email/header.py
index 66a1d46..113a81f 100644
--- a/Lib/email/header.py
+++ b/Lib/email/header.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2007 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Author: Ben Gertzfield, Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/iterators.py b/Lib/email/iterators.py
index 2f436ae..08ede3e 100644
--- a/Lib/email/iterators.py
+++ b/Lib/email/iterators.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/message.py b/Lib/email/message.py
index 08192c5..a58afc5 100644
--- a/Lib/email/message.py
+++ b/Lib/email/message.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/application.py b/Lib/email/mime/application.py
index f67cbad..9a9d213 100644
--- a/Lib/email/mime/application.py
+++ b/Lib/email/mime/application.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Keith Dart
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/audio.py b/Lib/email/mime/audio.py
index aa0c490..85f4a95 100644
--- a/Lib/email/mime/audio.py
+++ b/Lib/email/mime/audio.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Anthony Baxter
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/base.py b/Lib/email/mime/base.py
index f601f62..da4c6e5 100644
--- a/Lib/email/mime/base.py
+++ b/Lib/email/mime/base.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/image.py b/Lib/email/mime/image.py
index 4b7f2f9..dab9685 100644
--- a/Lib/email/mime/image.py
+++ b/Lib/email/mime/image.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/message.py b/Lib/email/mime/message.py
index 61836b5..13d9ff5 100644
--- a/Lib/email/mime/message.py
+++ b/Lib/email/mime/message.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/multipart.py b/Lib/email/mime/multipart.py
index 47fc218..1abb84d 100644
--- a/Lib/email/mime/multipart.py
+++ b/Lib/email/mime/multipart.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2006 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/nonmultipart.py b/Lib/email/mime/nonmultipart.py
index a41386e..5beab3a 100644
--- a/Lib/email/mime/nonmultipart.py
+++ b/Lib/email/mime/nonmultipart.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2006 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/mime/text.py b/Lib/email/mime/text.py
index 7672b78..aa4da7f 100644
--- a/Lib/email/mime/text.py
+++ b/Lib/email/mime/text.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/email/parser.py b/Lib/email/parser.py
index 475aa2b..039f03cb 100644
--- a/Lib/email/parser.py
+++ b/Lib/email/parser.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw, Thomas Wouters, Anthony Baxter
# Contact: email-sig@python.org
diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py
index 500bbc5..27c7ea5 100644
--- a/Lib/email/quoprimime.py
+++ b/Lib/email/quoprimime.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Ben Gertzfield
# Contact: email-sig@python.org
diff --git a/Lib/email/utils.py b/Lib/email/utils.py
index f276303..7eab74d 100644
--- a/Lib/email/utils.py
+++ b/Lib/email/utils.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2010 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
diff --git a/Lib/functools.py b/Lib/functools.py
index bde0a3e..eff6540 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -6,7 +6,7 @@
# Written by Nick Coghlan <ncoghlan at gmail.com>,
# Raymond Hettinger <python at rcn.com>,
# and Ɓukasz Langa <lukasz at langa.pl>.
-# Copyright (C) 2006-2024 Python Software Foundation.
+# Copyright (C) 2006 Python Software Foundation.
# See C source code for _functools credits/copyright
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
diff --git a/Lib/optparse.py b/Lib/optparse.py
index 04112ec..cbe3451 100644
--- a/Lib/optparse.py
+++ b/Lib/optparse.py
@@ -43,7 +43,7 @@ __all__ = ['Option',
__copyright__ = """
Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
-Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
+Copyright (c) 2002 Python Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
index ce5c036..4af8f7f 100644
--- a/Lib/test/test_csv.py
+++ b/Lib/test/test_csv.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001,2002 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# csv package unit tests
import copy
diff --git a/Lib/test/test_email/test_asian_codecs.py b/Lib/test/test_email/test_asian_codecs.py
index 1e0caee..ca44f54 100644
--- a/Lib/test/test_email/test_asian_codecs.py
+++ b/Lib/test/test_email/test_asian_codecs.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2006 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
# Contact: email-sig@python.org
# email package unit tests for (optional) Asian codecs
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py
index 65ddbab..abe9ef2 100644
--- a/Lib/test/test_email/test_email.py
+++ b/Lib/test/test_email/test_email.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2010 Python Software Foundation
+# Copyright (C) 2001 Python Software Foundation
# Contact: email-sig@python.org
# email package unit tests
diff --git a/Lib/test/test_email/torture_test.py b/Lib/test/test_email/torture_test.py
index 9cf9362..d15948a 100644
--- a/Lib/test/test_email/torture_test.py
+++ b/Lib/test/test_email/torture_test.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2004 Python Software Foundation
+# Copyright (C) 2002 Python Software Foundation
#
# A torture test of the email package. This should not be run as part of the
# standard Python test suite since it requires several meg of email messages
diff --git a/Lib/test/test_plistlib.py b/Lib/test/test_plistlib.py
index b231b05..a0c76e5 100644
--- a/Lib/test/test_plistlib.py
+++ b/Lib/test/test_plistlib.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003-2013 Python Software Foundation
+# Copyright (C) 2003 Python Software Foundation
import copy
import operator
import pickle
diff --git a/Lib/textwrap.py b/Lib/textwrap.py
index 7ca393d..1bf07aa 100644
--- a/Lib/textwrap.py
+++ b/Lib/textwrap.py
@@ -2,7 +2,7 @@
"""
# Copyright (C) 1999-2001 Gregory P. Ward.
-# Copyright (C) 2002, 2003 Python Software Foundation.
+# Copyright (C) 2002 Python Software Foundation.
# Written by Greg Ward <gward@python.net>
import re
diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py
index 324e5d0..78ff6bb 100644
--- a/Lib/unittest/__init__.py
+++ b/Lib/unittest/__init__.py
@@ -27,7 +27,7 @@ Further information is available in the bundled documentation, and from
http://docs.python.org/library/unittest.html
Copyright (c) 1999-2003 Steve Purcell
-Copyright (c) 2003-2010 Python Software Foundation
+Copyright (c) 2003 Python Software Foundation
This module is free software, and you may redistribute it and/or modify
it under the same terms as Python itself, so long as this copyright message
and disclaimer are retained in their original form.
diff --git a/Lib/wsgiref/headers.py b/Lib/wsgiref/headers.py
index 05d2ba4..c78879f 100644
--- a/Lib/wsgiref/headers.py
+++ b/Lib/wsgiref/headers.py
@@ -1,7 +1,7 @@
"""Manage HTTP Response Headers
Much of this module is red-handedly pilfered from email.message in the stdlib,
-so portions are Copyright (C) 2001,2002 Python Software Foundation, and were
+so portions are Copyright (C) 2001 Python Software Foundation, and were
written by Barry Warsaw.
"""