summaryrefslogtreecommitdiff
path: root/psycopg
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2020-01-17 21:10:44 +0000
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2020-01-17 21:21:11 +0000
commit5e0b02afb2e4d7f1e046b301c23550289d6b5d57 (patch)
tree8d47e5510a0ecbc9c2236d8436434040886fb60f /psycopg
parent8a6b280d86cc757b114b19c25c0479cc5070ec5e (diff)
downloadpsycopg2-5e0b02afb2e4d7f1e046b301c23550289d6b5d57.tar.gz
Copyright bumped to 2020
Diffstat (limited to 'psycopg')
-rw-r--r--psycopg/adapter_asis.c1
-rw-r--r--psycopg/adapter_asis.h1
-rw-r--r--psycopg/adapter_binary.c1
-rw-r--r--psycopg/adapter_binary.h1
-rw-r--r--psycopg/adapter_datetime.c1
-rw-r--r--psycopg/adapter_datetime.h1
-rw-r--r--psycopg/adapter_list.c1
-rw-r--r--psycopg/adapter_list.h1
-rw-r--r--psycopg/adapter_mxdatetime.c1
-rw-r--r--psycopg/adapter_mxdatetime.h1
-rw-r--r--psycopg/adapter_pboolean.c1
-rw-r--r--psycopg/adapter_pboolean.h1
-rw-r--r--psycopg/adapter_pdecimal.c1
-rw-r--r--psycopg/adapter_pdecimal.h1
-rw-r--r--psycopg/adapter_pfloat.c1
-rw-r--r--psycopg/adapter_pfloat.h1
-rw-r--r--psycopg/adapter_pint.c1
-rw-r--r--psycopg/adapter_pint.h1
-rw-r--r--psycopg/adapter_qstring.c1
-rw-r--r--psycopg/adapter_qstring.h1
-rw-r--r--psycopg/bytes_format.c1
-rw-r--r--psycopg/column.h1
-rw-r--r--psycopg/column_type.c1
-rw-r--r--psycopg/config.h1
-rw-r--r--psycopg/connection.h1
-rw-r--r--psycopg/connection_int.c1
-rw-r--r--psycopg/connection_type.c1
-rw-r--r--psycopg/conninfo.h1
-rw-r--r--psycopg/conninfo_type.c1
-rw-r--r--psycopg/cursor.h1
-rw-r--r--psycopg/cursor_int.c1
-rw-r--r--psycopg/cursor_type.c1
-rw-r--r--psycopg/diagnostics.h1
-rw-r--r--psycopg/diagnostics_type.c1
-rw-r--r--psycopg/error.h1
-rw-r--r--psycopg/error_type.c1
-rw-r--r--psycopg/green.c1
-rw-r--r--psycopg/green.h1
-rw-r--r--psycopg/libpq_support.c1
-rw-r--r--psycopg/libpq_support.h1
-rw-r--r--psycopg/lobject.h1
-rw-r--r--psycopg/lobject_int.c1
-rw-r--r--psycopg/lobject_type.c1
-rw-r--r--psycopg/microprotocols.c1
-rw-r--r--psycopg/microprotocols.h1
-rw-r--r--psycopg/microprotocols_proto.c1
-rw-r--r--psycopg/microprotocols_proto.h1
-rw-r--r--psycopg/notify.h1
-rw-r--r--psycopg/notify_type.c1
-rw-r--r--psycopg/pqpath.c1
-rw-r--r--psycopg/pqpath.h1
-rw-r--r--psycopg/psycopg.h1
-rw-r--r--psycopg/psycopgmodule.c1
-rw-r--r--psycopg/python.h1
-rw-r--r--psycopg/replication_connection.h1
-rw-r--r--psycopg/replication_connection_type.c1
-rw-r--r--psycopg/replication_cursor.h1
-rw-r--r--psycopg/replication_cursor_type.c1
-rw-r--r--psycopg/replication_message.h1
-rw-r--r--psycopg/replication_message_type.c1
-rw-r--r--psycopg/solaris_support.c1
-rw-r--r--psycopg/solaris_support.h1
-rw-r--r--psycopg/typecast.c1
-rw-r--r--psycopg/typecast.h1
-rw-r--r--psycopg/typecast_array.c1
-rw-r--r--psycopg/typecast_basic.c1
-rw-r--r--psycopg/typecast_binary.c1
-rw-r--r--psycopg/typecast_binary.h1
-rw-r--r--psycopg/typecast_datetime.c1
-rw-r--r--psycopg/typecast_mxdatetime.c1
-rw-r--r--psycopg/utils.c1
-rw-r--r--psycopg/utils.h1
-rw-r--r--psycopg/win32_support.c1
-rw-r--r--psycopg/win32_support.h1
-rw-r--r--psycopg/xid.h1
-rw-r--r--psycopg/xid_type.c1
76 files changed, 76 insertions, 0 deletions
diff --git a/psycopg/adapter_asis.c b/psycopg/adapter_asis.c
index 07644cc..d0cb505 100644
--- a/psycopg/adapter_asis.c
+++ b/psycopg/adapter_asis.c
@@ -1,6 +1,7 @@
/* adapter_asis.c - adapt types as they are
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_asis.h b/psycopg/adapter_asis.h
index 7006414..370cda6 100644
--- a/psycopg/adapter_asis.h
+++ b/psycopg/adapter_asis.h
@@ -1,6 +1,7 @@
/* adapter_asis.h - definition for the psycopg AsIs type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_binary.c b/psycopg/adapter_binary.c
index e4c1b24..693ce31 100644
--- a/psycopg/adapter_binary.c
+++ b/psycopg/adapter_binary.c
@@ -1,6 +1,7 @@
/* adapter_binary.c - Binary objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_binary.h b/psycopg/adapter_binary.h
index dff47e3..a1ff274 100644
--- a/psycopg/adapter_binary.h
+++ b/psycopg/adapter_binary.h
@@ -1,6 +1,7 @@
/* adapter_binary.h - definition for the Binary type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_datetime.c b/psycopg/adapter_datetime.c
index 01b12d1..74b5558 100644
--- a/psycopg/adapter_datetime.c
+++ b/psycopg/adapter_datetime.c
@@ -1,6 +1,7 @@
/* adapter_datetime.c - python date/time objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_datetime.h b/psycopg/adapter_datetime.h
index b6afa09..861c062 100644
--- a/psycopg/adapter_datetime.h
+++ b/psycopg/adapter_datetime.h
@@ -1,6 +1,7 @@
/* adapter_datetime.h - definition for the python date/time types
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_list.c b/psycopg/adapter_list.c
index f8c1604..651dc3e 100644
--- a/psycopg/adapter_list.c
+++ b/psycopg/adapter_list.c
@@ -1,6 +1,7 @@
/* adapter_list.c - python list objects
*
* Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_list.h b/psycopg/adapter_list.h
index 538ec90..ce841e4 100644
--- a/psycopg/adapter_list.h
+++ b/psycopg/adapter_list.h
@@ -1,6 +1,7 @@
/* adapter_list.h - definition for the python list types
*
* Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_mxdatetime.c b/psycopg/adapter_mxdatetime.c
index 4c2e274..125bd14 100644
--- a/psycopg/adapter_mxdatetime.c
+++ b/psycopg/adapter_mxdatetime.c
@@ -1,6 +1,7 @@
/* adapter_mxdatetime.c - mx date/time objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_mxdatetime.h b/psycopg/adapter_mxdatetime.h
index 4b1df68..93d5932 100644
--- a/psycopg/adapter_mxdatetime.h
+++ b/psycopg/adapter_mxdatetime.h
@@ -1,6 +1,7 @@
/* adapter_mxdatetime.h - definition for the mx date/time types
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pboolean.c b/psycopg/adapter_pboolean.c
index 2d6c4f5..4edc7bd 100644
--- a/psycopg/adapter_pboolean.c
+++ b/psycopg/adapter_pboolean.c
@@ -1,6 +1,7 @@
/* adapter_pboolean.c - psycopg boolean type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pboolean.h b/psycopg/adapter_pboolean.h
index 15e14cd..b720899 100644
--- a/psycopg/adapter_pboolean.h
+++ b/psycopg/adapter_pboolean.h
@@ -1,6 +1,7 @@
/* adapter_pboolean.h - definition for the psycopg boolean type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pdecimal.c b/psycopg/adapter_pdecimal.c
index 2712964..f42fdef 100644
--- a/psycopg/adapter_pdecimal.c
+++ b/psycopg/adapter_pdecimal.c
@@ -1,6 +1,7 @@
/* adapter_pdecimal.c - psycopg Decimal type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pdecimal.h b/psycopg/adapter_pdecimal.h
index 87fbf91..c4f1539 100644
--- a/psycopg/adapter_pdecimal.h
+++ b/psycopg/adapter_pdecimal.h
@@ -1,6 +1,7 @@
/* adapter_pdecimal.h - definition for the psycopg Decimal type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pfloat.c b/psycopg/adapter_pfloat.c
index 44bf5f7..2243633 100644
--- a/psycopg/adapter_pfloat.c
+++ b/psycopg/adapter_pfloat.c
@@ -1,6 +1,7 @@
/* adapter_float.c - psycopg pfloat type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pfloat.h b/psycopg/adapter_pfloat.h
index d7ad2d9..551ebf9 100644
--- a/psycopg/adapter_pfloat.h
+++ b/psycopg/adapter_pfloat.h
@@ -1,6 +1,7 @@
/* adapter_pfloat.h - definition for the psycopg float type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pint.c b/psycopg/adapter_pint.c
index 6023ae0..2784759 100644
--- a/psycopg/adapter_pint.c
+++ b/psycopg/adapter_pint.c
@@ -1,6 +1,7 @@
/* adapter_int.c - psycopg pint type wrapper implementation
*
* Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_pint.h b/psycopg/adapter_pint.h
index 985a458..26be5ed 100644
--- a/psycopg/adapter_pint.h
+++ b/psycopg/adapter_pint.h
@@ -1,6 +1,7 @@
/* adapter_pint.h - definition for the psycopg int type wrapper
*
* Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_qstring.c b/psycopg/adapter_qstring.c
index 302e515..ee2de9a 100644
--- a/psycopg/adapter_qstring.c
+++ b/psycopg/adapter_qstring.c
@@ -1,6 +1,7 @@
/* adapter_qstring.c - QuotedString objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/adapter_qstring.h b/psycopg/adapter_qstring.h
index c06d98b..2fa3083 100644
--- a/psycopg/adapter_qstring.h
+++ b/psycopg/adapter_qstring.h
@@ -1,6 +1,7 @@
/* adapter_qstring.h - definition for the QuotedString type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/bytes_format.c b/psycopg/bytes_format.c
index d363b49..ea12125 100644
--- a/psycopg/bytes_format.c
+++ b/psycopg/bytes_format.c
@@ -1,6 +1,7 @@
/* bytes_format.c - bytes-oriented version of PyString_Format
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/column.h b/psycopg/column.h
index 29de1c6..7d18583 100644
--- a/psycopg/column.h
+++ b/psycopg/column.h
@@ -1,6 +1,7 @@
/* column.h - definition for a column in cursor.description type
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/column_type.c b/psycopg/column_type.c
index 666b519..4947af2 100644
--- a/psycopg/column_type.c
+++ b/psycopg/column_type.c
@@ -1,6 +1,7 @@
/* column_type.c - python interface to cursor.description objects
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/config.h b/psycopg/config.h
index 4fba003..7813245 100644
--- a/psycopg/config.h
+++ b/psycopg/config.h
@@ -1,6 +1,7 @@
/* config.h - general config and Dprintf macro
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/connection.h b/psycopg/connection.h
index 829ef5a..a78cdce 100644
--- a/psycopg/connection.h
+++ b/psycopg/connection.h
@@ -1,6 +1,7 @@
/* connection.h - definition for the psycopg connection type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c
index 0629523..78dbd46 100644
--- a/psycopg/connection_int.c
+++ b/psycopg/connection_int.c
@@ -1,6 +1,7 @@
/* connection_int.c - code used by the connection object
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/connection_type.c b/psycopg/connection_type.c
index bc88d78..25299fa 100644
--- a/psycopg/connection_type.c
+++ b/psycopg/connection_type.c
@@ -1,6 +1,7 @@
/* connection_type.c - python interface to connection objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/conninfo.h b/psycopg/conninfo.h
index 2489e62..4063ca8 100644
--- a/psycopg/conninfo.h
+++ b/psycopg/conninfo.h
@@ -1,6 +1,7 @@
/* connection.h - definition for the psycopg ConnectionInfo type
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/conninfo_type.c b/psycopg/conninfo_type.c
index 42076ab..6258a07 100644
--- a/psycopg/conninfo_type.c
+++ b/psycopg/conninfo_type.c
@@ -1,6 +1,7 @@
/* conninfo_type.c - present information about the libpq connection
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/cursor.h b/psycopg/cursor.h
index d74069a..d946cf7 100644
--- a/psycopg/cursor.h
+++ b/psycopg/cursor.h
@@ -1,6 +1,7 @@
/* cursor.h - definition for the psycopg cursor type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/cursor_int.c b/psycopg/cursor_int.c
index 57824c2..7123b0d 100644
--- a/psycopg/cursor_int.c
+++ b/psycopg/cursor_int.c
@@ -1,6 +1,7 @@
/* cursor_int.c - code used by the cursor object
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/cursor_type.c b/psycopg/cursor_type.c
index b5c08dc..a7bd11b 100644
--- a/psycopg/cursor_type.c
+++ b/psycopg/cursor_type.c
@@ -1,6 +1,7 @@
/* cursor_type.c - python interface to cursor objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/diagnostics.h b/psycopg/diagnostics.h
index 95c1a61..6abfa32 100644
--- a/psycopg/diagnostics.h
+++ b/psycopg/diagnostics.h
@@ -1,6 +1,7 @@
/* diagnostics.c - definition for the psycopg Diagnostics type
*
* Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/diagnostics_type.c b/psycopg/diagnostics_type.c
index efbce5f..3198312 100644
--- a/psycopg/diagnostics_type.c
+++ b/psycopg/diagnostics_type.c
@@ -1,6 +1,7 @@
/* diagnostics.c - present information from libpq error responses
*
* Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/error.h b/psycopg/error.h
index a8ba99d..44b7619 100644
--- a/psycopg/error.h
+++ b/psycopg/error.h
@@ -1,6 +1,7 @@
/* error.h - definition for the psycopg base Error type
*
* Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/error_type.c b/psycopg/error_type.c
index bf5894c..37b4d4a 100644
--- a/psycopg/error_type.c
+++ b/psycopg/error_type.c
@@ -1,6 +1,7 @@
/* error_type.c - python interface to the Error objects
*
* Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/green.c b/psycopg/green.c
index d2d7383..e9dba7c 100644
--- a/psycopg/green.c
+++ b/psycopg/green.c
@@ -1,6 +1,7 @@
/* green.c - cooperation with coroutine libraries.
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/green.h b/psycopg/green.h
index 352cf5f..8bb8429 100644
--- a/psycopg/green.h
+++ b/psycopg/green.h
@@ -1,6 +1,7 @@
/* green.c - cooperation with coroutine libraries.
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/libpq_support.c b/psycopg/libpq_support.c
index 851a72d..b122a9a 100644
--- a/psycopg/libpq_support.c
+++ b/psycopg/libpq_support.c
@@ -3,6 +3,7 @@
* streaming replication
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/libpq_support.h b/psycopg/libpq_support.h
index 824ff4b..4264d3b 100644
--- a/psycopg/libpq_support.h
+++ b/psycopg/libpq_support.h
@@ -1,6 +1,7 @@
/* libpq_support.h - definitions for libpq_support.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/lobject.h b/psycopg/lobject.h
index dbda73e..ae7c174 100644
--- a/psycopg/lobject.h
+++ b/psycopg/lobject.h
@@ -1,6 +1,7 @@
/* lobject.h - definition for the psycopg lobject type
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/lobject_int.c b/psycopg/lobject_int.c
index 973f163..71a8bfb 100644
--- a/psycopg/lobject_int.c
+++ b/psycopg/lobject_int.c
@@ -1,6 +1,7 @@
/* lobject_int.c - code used by the lobject object
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/lobject_type.c b/psycopg/lobject_type.c
index e84de82..12b6c8d 100644
--- a/psycopg/lobject_type.c
+++ b/psycopg/lobject_type.c
@@ -1,6 +1,7 @@
/* lobject_type.c - python interface to lobject objects
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/microprotocols.c b/psycopg/microprotocols.c
index ba73f90..19408fe 100644
--- a/psycopg/microprotocols.c
+++ b/psycopg/microprotocols.c
@@ -1,6 +1,7 @@
/* microprotocols.c - minimalist and non-validating protocols implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/microprotocols.h b/psycopg/microprotocols.h
index 42adf66..ac6fbf8 100644
--- a/psycopg/microprotocols.h
+++ b/psycopg/microprotocols.h
@@ -1,6 +1,7 @@
/* microprotocols.c - definitions for minimalist and non-validating protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/microprotocols_proto.c b/psycopg/microprotocols_proto.c
index dbad99a..00f79e5 100644
--- a/psycopg/microprotocols_proto.c
+++ b/psycopg/microprotocols_proto.c
@@ -1,6 +1,7 @@
/* microprotocol_proto.c - psycopg protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/microprotocols_proto.h b/psycopg/microprotocols_proto.h
index 4f33fdb..bc29dcd 100644
--- a/psycopg/microprotocols_proto.h
+++ b/psycopg/microprotocols_proto.h
@@ -1,6 +1,7 @@
/* microporotocols_proto.h - definition for psycopg's protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/notify.h b/psycopg/notify.h
index bff1a28..ab14ab4 100644
--- a/psycopg/notify.h
+++ b/psycopg/notify.h
@@ -1,6 +1,7 @@
/* notify.h - definition for the psycopg Notify type
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/notify_type.c b/psycopg/notify_type.c
index a7c3a01..68dd092 100644
--- a/psycopg/notify_type.c
+++ b/psycopg/notify_type.c
@@ -1,6 +1,7 @@
/* notify_type.c - python interface to Notify objects
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/pqpath.c b/psycopg/pqpath.c
index a9ce0a3..e52ba18 100644
--- a/psycopg/pqpath.c
+++ b/psycopg/pqpath.c
@@ -1,6 +1,7 @@
/* pqpath.c - single path into libpq
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/pqpath.h b/psycopg/pqpath.h
index eb0578a..a5559ee 100644
--- a/psycopg/pqpath.h
+++ b/psycopg/pqpath.h
@@ -1,6 +1,7 @@
/* pqpath.h - definitions for pqpath.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/psycopg.h b/psycopg/psycopg.h
index 7bd3810..67af299 100644
--- a/psycopg/psycopg.h
+++ b/psycopg/psycopg.h
@@ -1,6 +1,7 @@
/* psycopg.h - definitions for the psycopg python module
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/psycopgmodule.c b/psycopg/psycopgmodule.c
index c6f0963..14e4436 100644
--- a/psycopg/psycopgmodule.c
+++ b/psycopg/psycopgmodule.c
@@ -1,6 +1,7 @@
/* psycopgmodule.c - psycopg module (will import other C classes)
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/python.h b/psycopg/python.h
index f45aeb5..2a5f9d8 100644
--- a/psycopg/python.h
+++ b/psycopg/python.h
@@ -1,6 +1,7 @@
/* python.h - python version compatibility stuff
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_connection.h b/psycopg/replication_connection.h
index 1f7167b..c0cf90b 100644
--- a/psycopg/replication_connection.h
+++ b/psycopg/replication_connection.h
@@ -1,6 +1,7 @@
/* replication_connection.h - definition for the psycopg replication connection type
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_connection_type.c b/psycopg/replication_connection_type.c
index 0a836a9..a51e353 100644
--- a/psycopg/replication_connection_type.c
+++ b/psycopg/replication_connection_type.c
@@ -1,6 +1,7 @@
/* replication_connection_type.c - python interface to replication connection objects
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_cursor.h b/psycopg/replication_cursor.h
index ba066b5..c7a0d5e 100644
--- a/psycopg/replication_cursor.h
+++ b/psycopg/replication_cursor.h
@@ -1,6 +1,7 @@
/* replication_cursor.h - definition for the psycopg replication cursor type
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_cursor_type.c b/psycopg/replication_cursor_type.c
index c1dbd43..5ca7652 100644
--- a/psycopg/replication_cursor_type.c
+++ b/psycopg/replication_cursor_type.c
@@ -1,6 +1,7 @@
/* replication_cursor_type.c - python interface to replication cursor objects
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_message.h b/psycopg/replication_message.h
index 710114a..df538af 100644
--- a/psycopg/replication_message.h
+++ b/psycopg/replication_message.h
@@ -1,6 +1,7 @@
/* replication_message.h - definition for the psycopg ReplicationMessage type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/replication_message_type.c b/psycopg/replication_message_type.c
index c18b625..aeff12b 100644
--- a/psycopg/replication_message_type.c
+++ b/psycopg/replication_message_type.c
@@ -1,6 +1,7 @@
/* replication_message_type.c - python interface to ReplcationMessage objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/solaris_support.c b/psycopg/solaris_support.c
index e5f8edf..806384f 100644
--- a/psycopg/solaris_support.c
+++ b/psycopg/solaris_support.c
@@ -2,6 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018, Joyent, Inc.
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/solaris_support.h b/psycopg/solaris_support.h
index 8cfb409..be1e1ac 100644
--- a/psycopg/solaris_support.h
+++ b/psycopg/solaris_support.h
@@ -2,6 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018-2019, Joyent, Inc.
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast.c b/psycopg/typecast.c
index 1aab80f..021fb0c 100644
--- a/psycopg/typecast.c
+++ b/psycopg/typecast.c
@@ -1,6 +1,7 @@
/* typecast.c - basic utility functions related to typecasting
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast.h b/psycopg/typecast.h
index cbc11ba..baf1bff 100644
--- a/psycopg/typecast.h
+++ b/psycopg/typecast.h
@@ -1,6 +1,7 @@
/* typecast.h - definitions for typecasters
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_array.c b/psycopg/typecast_array.c
index 99cadb5..ca54414 100644
--- a/psycopg/typecast_array.c
+++ b/psycopg/typecast_array.c
@@ -1,6 +1,7 @@
/* typecast_array.c - array typecasters
*
* Copyright (C) 2005-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_basic.c b/psycopg/typecast_basic.c
index 51ba245..f3fac98 100644
--- a/psycopg/typecast_basic.c
+++ b/psycopg/typecast_basic.c
@@ -1,6 +1,7 @@
/* pgcasts_basic.c - basic typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_binary.c b/psycopg/typecast_binary.c
index c375391..032d0f1 100644
--- a/psycopg/typecast_binary.c
+++ b/psycopg/typecast_binary.c
@@ -1,6 +1,7 @@
/* typecast_binary.c - binary typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_binary.h b/psycopg/typecast_binary.h
index 30f5ad7..041f026 100644
--- a/psycopg/typecast_binary.h
+++ b/psycopg/typecast_binary.h
@@ -1,6 +1,7 @@
/* typecast_binary.h - definitions for binary typecaster
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_datetime.c b/psycopg/typecast_datetime.c
index 2fd9689..095fce1 100644
--- a/psycopg/typecast_datetime.c
+++ b/psycopg/typecast_datetime.c
@@ -1,6 +1,7 @@
/* typecast_datetime.c - date and time typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/typecast_mxdatetime.c b/psycopg/typecast_mxdatetime.c
index bee0807..d308f13 100644
--- a/psycopg/typecast_mxdatetime.c
+++ b/psycopg/typecast_mxdatetime.c
@@ -1,6 +1,7 @@
/* typecast_mxdatetime.c - date and time typecasting functions to mx types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/utils.c b/psycopg/utils.c
index eb24358..33b3aa8 100644
--- a/psycopg/utils.c
+++ b/psycopg/utils.c
@@ -1,6 +1,7 @@
/* utils.c - miscellaneous utility functions
*
* Copyright (C) 2008-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/utils.h b/psycopg/utils.h
index 72658de..c62b310 100644
--- a/psycopg/utils.h
+++ b/psycopg/utils.h
@@ -1,6 +1,7 @@
/* utils.h - function definitions for utility file
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/win32_support.c b/psycopg/win32_support.c
index 45501b5..f39bc44 100644
--- a/psycopg/win32_support.c
+++ b/psycopg/win32_support.c
@@ -1,6 +1,7 @@
/* win32_support.c - emulate some functions missing on Win32
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/win32_support.h b/psycopg/win32_support.h
index a49d5de..c803bef 100644
--- a/psycopg/win32_support.h
+++ b/psycopg/win32_support.h
@@ -1,6 +1,7 @@
/* win32_support.h - definitions for win32_support.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/xid.h b/psycopg/xid.h
index 5c6fc07..873fa00 100644
--- a/psycopg/xid.h
+++ b/psycopg/xid.h
@@ -2,6 +2,7 @@
*
* Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au>
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*
diff --git a/psycopg/xid_type.c b/psycopg/xid_type.c
index dfa3539..a4e05cb 100644
--- a/psycopg/xid_type.c
+++ b/psycopg/xid_type.c
@@ -2,6 +2,7 @@
*
* Copyright (C) 2008 Canonical Ltd.
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
+ * Copyright (C) 2020 The Psycopg Team
*
* This file is part of psycopg.
*