summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2010-04-06 02:59:44 +0000
committerTres Seaver <tseaver@palladion.com>2010-04-06 02:59:44 +0000
commitf59f3bdb55f07cf7111fd6a469eb43f7ede560f0 (patch)
tree0de1899fb5706a817bcd5e520dd2c3cea3d1132b /src
parent9191c3d875ca4e9887294e6ddd382e9b211c1f8b (diff)
downloadzope-interface-f59f3bdb55f07cf7111fd6a469eb43f7ede560f0.tar.gz
Comply with repository policy.
Diffstat (limited to 'src')
-rw-r--r--src/zope/interface/__init__.py2
-rw-r--r--src/zope/interface/_flatten.py2
-rw-r--r--src/zope/interface/_zope_interface_coptimizations.c2
-rw-r--r--src/zope/interface/adapter.py2
-rw-r--r--src/zope/interface/advice.py2
-rw-r--r--src/zope/interface/common/idatetime.py2
-rw-r--r--src/zope/interface/common/interfaces.py2
-rw-r--r--src/zope/interface/common/mapping.py2
-rw-r--r--src/zope/interface/common/sequence.py2
-rw-r--r--src/zope/interface/common/tests/basemapping.py2
-rw-r--r--src/zope/interface/common/tests/test_idatetime.py2
-rw-r--r--src/zope/interface/common/tests/test_import_interfaces.py2
-rw-r--r--src/zope/interface/declarations.py2
-rw-r--r--src/zope/interface/document.py2
-rw-r--r--src/zope/interface/exceptions.py2
-rw-r--r--src/zope/interface/interface.py2
-rw-r--r--src/zope/interface/interfaces.py2
-rw-r--r--src/zope/interface/ro.py2
-rw-r--r--src/zope/interface/tests/dummy.py2
-rw-r--r--src/zope/interface/tests/ifoo.py2
-rw-r--r--src/zope/interface/tests/m1.py2
-rw-r--r--src/zope/interface/tests/m2.py2
-rw-r--r--src/zope/interface/tests/odd.py2
-rw-r--r--src/zope/interface/tests/test_adapter.py2
-rw-r--r--src/zope/interface/tests/test_advice.py2
-rw-r--r--src/zope/interface/tests/test_declarations.py2
-rw-r--r--src/zope/interface/tests/test_document.py2
-rw-r--r--src/zope/interface/tests/test_element.py2
-rw-r--r--src/zope/interface/tests/test_interface.py2
-rw-r--r--src/zope/interface/tests/test_odd_declarations.py2
-rw-r--r--src/zope/interface/tests/test_sorting.py2
-rw-r--r--src/zope/interface/tests/test_verify.py2
-rw-r--r--src/zope/interface/tests/unitfixtures.py2
-rw-r--r--src/zope/interface/verify.py2
34 files changed, 34 insertions, 34 deletions
diff --git a/src/zope/interface/__init__.py b/src/zope/interface/__init__.py
index 32f675e..2708d36 100644
--- a/src/zope/interface/__init__.py
+++ b/src/zope/interface/__init__.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/_flatten.py b/src/zope/interface/_flatten.py
index 7645abb..b092e9e 100644
--- a/src/zope/interface/_flatten.py
+++ b/src/zope/interface/_flatten.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2002 Zope Corporation and Contributors.
+# Copyright (c) 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/_zope_interface_coptimizations.c b/src/zope/interface/_zope_interface_coptimizations.c
index 9f3cd09..7eaf219 100644
--- a/src/zope/interface/_zope_interface_coptimizations.c
+++ b/src/zope/interface/_zope_interface_coptimizations.c
@@ -1,6 +1,6 @@
/*###########################################################################
#
- # Copyright (c) 2003 Zope Corporation and Contributors.
+ # Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/adapter.py b/src/zope/interface/adapter.py
index 011cd03..6a3d145 100644
--- a/src/zope/interface/adapter.py
+++ b/src/zope/interface/adapter.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/advice.py b/src/zope/interface/advice.py
index 6a06167..fb9f5a8 100644
--- a/src/zope/interface/advice.py
+++ b/src/zope/interface/advice.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/idatetime.py b/src/zope/interface/common/idatetime.py
index f0db2eb..f726e74 100644
--- a/src/zope/interface/common/idatetime.py
+++ b/src/zope/interface/common/idatetime.py
@@ -1,5 +1,5 @@
##############################################################################
-# Copyright (c) 2002 Zope Corporation and Contributors.
+# Copyright (c) 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/interfaces.py b/src/zope/interface/common/interfaces.py
index 72ffeac..724f504 100644
--- a/src/zope/interface/common/interfaces.py
+++ b/src/zope/interface/common/interfaces.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/mapping.py b/src/zope/interface/common/mapping.py
index 8779dab..c9ab32c 100644
--- a/src/zope/interface/common/mapping.py
+++ b/src/zope/interface/common/mapping.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/sequence.py b/src/zope/interface/common/sequence.py
index b921e5a..e10ec3a 100644
--- a/src/zope/interface/common/sequence.py
+++ b/src/zope/interface/common/sequence.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/tests/basemapping.py b/src/zope/interface/common/tests/basemapping.py
index de03f54..0cd5d11 100644
--- a/src/zope/interface/common/tests/basemapping.py
+++ b/src/zope/interface/common/tests/basemapping.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/tests/test_idatetime.py b/src/zope/interface/common/tests/test_idatetime.py
index f84316a..3baa281 100644
--- a/src/zope/interface/common/tests/test_idatetime.py
+++ b/src/zope/interface/common/tests/test_idatetime.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/common/tests/test_import_interfaces.py b/src/zope/interface/common/tests/test_import_interfaces.py
index 1766162..1473a53 100644
--- a/src/zope/interface/common/tests/test_import_interfaces.py
+++ b/src/zope/interface/common/tests/test_import_interfaces.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/declarations.py b/src/zope/interface/declarations.py
index 05ab3b6..44a40e2 100644
--- a/src/zope/interface/declarations.py
+++ b/src/zope/interface/declarations.py
@@ -1,5 +1,5 @@
##############################################################################
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/document.py b/src/zope/interface/document.py
index 9f88f4f..5ca637c 100644
--- a/src/zope/interface/document.py
+++ b/src/zope/interface/document.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/exceptions.py b/src/zope/interface/exceptions.py
index 237a841..4940302 100644
--- a/src/zope/interface/exceptions.py
+++ b/src/zope/interface/exceptions.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2002 Zope Corporation and Contributors.
+# Copyright (c) 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/interface.py b/src/zope/interface/interface.py
index bb7d2b1..f34bc13 100644
--- a/src/zope/interface/interface.py
+++ b/src/zope/interface/interface.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/interfaces.py b/src/zope/interface/interfaces.py
index f1093c2..4c453e9 100644
--- a/src/zope/interface/interfaces.py
+++ b/src/zope/interface/interfaces.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2002 Zope Corporation and Contributors.
+# Copyright (c) 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/ro.py b/src/zope/interface/ro.py
index db343ab..318299e 100644
--- a/src/zope/interface/ro.py
+++ b/src/zope/interface/ro.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/dummy.py b/src/zope/interface/tests/dummy.py
index f4a4f9d..cc1036b 100644
--- a/src/zope/interface/tests/dummy.py
+++ b/src/zope/interface/tests/dummy.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/ifoo.py b/src/zope/interface/tests/ifoo.py
index 6ae2231..3e38b69 100644
--- a/src/zope/interface/tests/ifoo.py
+++ b/src/zope/interface/tests/ifoo.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/m1.py b/src/zope/interface/tests/m1.py
index 86adad2..f5cb31d 100644
--- a/src/zope/interface/tests/m1.py
+++ b/src/zope/interface/tests/m1.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/m2.py b/src/zope/interface/tests/m2.py
index 16762dd..5d17e96 100644
--- a/src/zope/interface/tests/m2.py
+++ b/src/zope/interface/tests/m2.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/odd.py b/src/zope/interface/tests/odd.py
index 27756b6..b0224da 100644
--- a/src/zope/interface/tests/odd.py
+++ b/src/zope/interface/tests/odd.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_adapter.py b/src/zope/interface/tests/test_adapter.py
index 74987ff..9ce2c47 100644
--- a/src/zope/interface/tests/test_adapter.py
+++ b/src/zope/interface/tests/test_adapter.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_advice.py b/src/zope/interface/tests/test_advice.py
index ac96465..f7df549 100644
--- a/src/zope/interface/tests/test_advice.py
+++ b/src/zope/interface/tests/test_advice.py
@@ -1,7 +1,7 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_declarations.py b/src/zope/interface/tests/test_declarations.py
index cd95f82..0681fe7 100644
--- a/src/zope/interface/tests/test_declarations.py
+++ b/src/zope/interface/tests/test_declarations.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_document.py b/src/zope/interface/tests/test_document.py
index 67648e3..66f7e27 100644
--- a/src/zope/interface/tests/test_document.py
+++ b/src/zope/interface/tests/test_document.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_element.py b/src/zope/interface/tests/test_element.py
index 07d56da..b2faab0 100644
--- a/src/zope/interface/tests/test_element.py
+++ b/src/zope/interface/tests/test_element.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_interface.py b/src/zope/interface/tests/test_interface.py
index 6cca70d..b2b6100 100644
--- a/src/zope/interface/tests/test_interface.py
+++ b/src/zope/interface/tests/test_interface.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_odd_declarations.py b/src/zope/interface/tests/test_odd_declarations.py
index 03b7c38..b210dcf 100644
--- a/src/zope/interface/tests/test_odd_declarations.py
+++ b/src/zope/interface/tests/test_odd_declarations.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_sorting.py b/src/zope/interface/tests/test_sorting.py
index 31f575d..6b3b336 100644
--- a/src/zope/interface/tests/test_sorting.py
+++ b/src/zope/interface/tests/test_sorting.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/test_verify.py b/src/zope/interface/tests/test_verify.py
index e43f726..6ae9915 100644
--- a/src/zope/interface/tests/test_verify.py
+++ b/src/zope/interface/tests/test_verify.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/tests/unitfixtures.py b/src/zope/interface/tests/unitfixtures.py
index bdd697c..28f3ff3 100644
--- a/src/zope/interface/tests/unitfixtures.py
+++ b/src/zope/interface/tests/unitfixtures.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
diff --git a/src/zope/interface/verify.py b/src/zope/interface/verify.py
index 100b43a..f6982cf 100644
--- a/src/zope/interface/verify.py
+++ b/src/zope/interface/verify.py
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,