From 1d3a89a0bba621dc1cc9b32db6d241bd2da85ad1 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 15 Jun 2021 00:37:22 +0100 Subject: [PATCH] Copyright year updated to 2021 ag -l Copyright | xargs sed -i \ "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*Psycopg Team.*\)/\1-$(date +%Y)\3/I" --- doc/src/conf.py | 2 +- lib/__init__.py | 2 +- lib/_ipaddress.py | 2 +- lib/_json.py | 2 +- lib/_range.py | 2 +- lib/errorcodes.py | 2 +- lib/errors.py | 2 +- lib/extensions.py | 2 +- lib/extras.py | 2 +- lib/pool.py | 2 +- lib/sql.py | 2 +- lib/tz.py | 2 +- psycopg/adapter_asis.c | 2 +- psycopg/adapter_asis.h | 2 +- psycopg/adapter_binary.c | 2 +- psycopg/adapter_binary.h | 2 +- psycopg/adapter_datetime.c | 2 +- psycopg/adapter_datetime.h | 2 +- psycopg/adapter_list.c | 2 +- psycopg/adapter_list.h | 2 +- psycopg/adapter_pboolean.c | 2 +- psycopg/adapter_pboolean.h | 2 +- psycopg/adapter_pdecimal.c | 2 +- psycopg/adapter_pdecimal.h | 2 +- psycopg/adapter_pfloat.c | 2 +- psycopg/adapter_pfloat.h | 2 +- psycopg/adapter_pint.c | 2 +- psycopg/adapter_pint.h | 2 +- psycopg/adapter_qstring.c | 2 +- psycopg/adapter_qstring.h | 2 +- psycopg/aix_support.c | 2 +- psycopg/aix_support.h | 2 +- psycopg/bytes_format.c | 2 +- psycopg/column.h | 2 +- psycopg/column_type.c | 2 +- psycopg/config.h | 2 +- psycopg/connection.h | 2 +- psycopg/connection_int.c | 2 +- psycopg/connection_type.c | 2 +- psycopg/conninfo.h | 2 +- psycopg/conninfo_type.c | 2 +- psycopg/cursor.h | 2 +- psycopg/cursor_int.c | 2 +- psycopg/cursor_type.c | 2 +- psycopg/diagnostics.h | 2 +- psycopg/diagnostics_type.c | 2 +- psycopg/error.h | 2 +- psycopg/error_type.c | 2 +- psycopg/green.c | 2 +- psycopg/green.h | 2 +- psycopg/libpq_support.c | 2 +- psycopg/libpq_support.h | 2 +- psycopg/lobject.h | 2 +- psycopg/lobject_int.c | 2 +- psycopg/lobject_type.c | 2 +- psycopg/microprotocols.c | 2 +- psycopg/microprotocols.h | 2 +- psycopg/microprotocols_proto.c | 2 +- psycopg/microprotocols_proto.h | 2 +- psycopg/notify.h | 2 +- psycopg/notify_type.c | 2 +- psycopg/pqpath.c | 2 +- psycopg/pqpath.h | 2 +- psycopg/psycopg.h | 2 +- psycopg/psycopgmodule.c | 2 +- psycopg/python.h | 2 +- psycopg/replication_connection.h | 2 +- psycopg/replication_connection_type.c | 2 +- psycopg/replication_cursor.h | 2 +- psycopg/replication_cursor_type.c | 2 +- psycopg/replication_message.h | 2 +- psycopg/replication_message_type.c | 2 +- psycopg/solaris_support.c | 2 +- psycopg/solaris_support.h | 2 +- psycopg/typecast.c | 2 +- psycopg/typecast.h | 2 +- psycopg/typecast_array.c | 2 +- psycopg/typecast_basic.c | 2 +- psycopg/typecast_binary.c | 2 +- psycopg/typecast_binary.h | 2 +- psycopg/typecast_datetime.c | 2 +- psycopg/utils.c | 2 +- psycopg/utils.h | 2 +- psycopg/win32_support.c | 2 +- psycopg/win32_support.h | 2 +- psycopg/xid.h | 2 +- psycopg/xid_type.c | 2 +- scripts/make_errorcodes.py | 2 +- scripts/make_errors.py | 2 +- scripts/refcounter.py | 2 +- setup.py | 2 +- tests/__init__.py | 2 +- tests/test_async.py | 2 +- tests/test_bugX000.py | 2 +- tests/test_bug_gc.py | 2 +- tests/test_cancel.py | 2 +- tests/test_connection.py | 2 +- tests/test_copy.py | 2 +- tests/test_cursor.py | 2 +- tests/test_dates.py | 2 +- tests/test_errcodes.py | 2 +- tests/test_errors.py | 2 +- tests/test_extras_dictcursor.py | 2 +- tests/test_fast_executemany.py | 2 +- tests/test_green.py | 2 +- tests/test_ipaddress.py | 2 +- tests/test_lobject.py | 2 +- tests/test_module.py | 2 +- tests/test_notify.py | 2 +- tests/test_psycopg2_dbapi20.py | 2 +- tests/test_quote.py | 2 +- tests/test_replication.py | 2 +- tests/test_sql.py | 2 +- tests/test_transaction.py | 2 +- tests/test_types_basic.py | 2 +- tests/test_types_extras.py | 2 +- tests/test_with.py | 2 +- tests/testutils.py | 2 +- 118 files changed, 118 insertions(+), 118 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index d565c97d..c40c4930 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -49,7 +49,7 @@ master_doc = 'index' # General information about the project. project = 'Psycopg' copyright = ( - '2001-2020, Federico Di Gregorio, Daniele Varrazzo, The Psycopg Team' + '2001-2021, Federico Di Gregorio, Daniele Varrazzo, The Psycopg Team' ) # The version info for the project you're documenting, acts as replacement for diff --git a/lib/__init__.py b/lib/__init__.py index 8d61892a..59a89386 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -19,7 +19,7 @@ Homepage: https://psycopg.org/ # psycopg/__init__.py - initialization of the psycopg module # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/_ipaddress.py b/lib/_ipaddress.py index 4094c27e..d38566c8 100644 --- a/lib/_ipaddress.py +++ b/lib/_ipaddress.py @@ -4,7 +4,7 @@ # psycopg/_ipaddress.py - Ipaddres-based network types adaptation # # Copyright (C) 2016-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/_json.py b/lib/_json.py index 4ceaba0b..95024223 100644 --- a/lib/_json.py +++ b/lib/_json.py @@ -8,7 +8,7 @@ extensions importing register_json from extras. # psycopg/_json.py - Implementation of the JSON adaptation objects # # Copyright (C) 2012-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/_range.py b/lib/_range.py index a59bab84..19a05d3c 100644 --- a/lib/_range.py +++ b/lib/_range.py @@ -5,7 +5,7 @@ # psycopg/_range.py - Implementation of the Range type and adaptation # # Copyright (C) 2012-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/errorcodes.py b/lib/errorcodes.py index 7eb9a345..d511f1cc 100644 --- a/lib/errorcodes.py +++ b/lib/errorcodes.py @@ -5,7 +5,7 @@ This module contains symbolic names for all PostgreSQL error codes. # psycopg2/errorcodes.py - PostgreSQL error codes # # Copyright (C) 2006-2019 Johan Dahlin -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/errors.py b/lib/errors.py index 98983fff..e4e47f5b 100644 --- a/lib/errors.py +++ b/lib/errors.py @@ -4,7 +4,7 @@ # psycopg/errors.py - SQLSTATE and DB-API exceptions # # Copyright (C) 2018-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/extensions.py b/lib/extensions.py index f941e02a..b938d0ce 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -13,7 +13,7 @@ This module holds all the extensions to the DBAPI-2.0 provided by psycopg. # psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/extras.py b/lib/extras.py index be39165f..f921d2d5 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -6,7 +6,7 @@ and classes until a better place in the distribution is found. # psycopg/extras.py - miscellaneous extra goodies for psycopg # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/pool.py b/lib/pool.py index 5b14a3aa..9d67d68e 100644 --- a/lib/pool.py +++ b/lib/pool.py @@ -5,7 +5,7 @@ This module implements thread-safe (and not) connection pools. # psycopg/pool.py - pooling code for psycopg # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/sql.py b/lib/sql.py index aa3b1480..1c780902 100644 --- a/lib/sql.py +++ b/lib/sql.py @@ -4,7 +4,7 @@ # psycopg/sql.py - SQL composition utility module # # Copyright (C) 2016-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/lib/tz.py b/lib/tz.py index 357aac0f..d88ca37c 100644 --- a/lib/tz.py +++ b/lib/tz.py @@ -7,7 +7,7 @@ functions or used to set the .tzinfo_factory attribute in cursors. # psycopg/tz.py - tzinfo implementation # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/psycopg/adapter_asis.c b/psycopg/adapter_asis.c index 49240bd2..5c757860 100644 --- a/psycopg/adapter_asis.c +++ b/psycopg/adapter_asis.c @@ -1,7 +1,7 @@ /* adapter_asis.c - adapt types as they are * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_asis.h b/psycopg/adapter_asis.h index 370cda6c..b6c82b72 100644 --- a/psycopg/adapter_asis.h +++ b/psycopg/adapter_asis.h @@ -1,7 +1,7 @@ /* adapter_asis.h - definition for the psycopg AsIs type wrapper * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_binary.c b/psycopg/adapter_binary.c index f6f7cddf..d6b110ca 100644 --- a/psycopg/adapter_binary.c +++ b/psycopg/adapter_binary.c @@ -1,7 +1,7 @@ /* adapter_binary.c - Binary objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_binary.h b/psycopg/adapter_binary.h index a1ff2745..54f9fb55 100644 --- a/psycopg/adapter_binary.h +++ b/psycopg/adapter_binary.h @@ -1,7 +1,7 @@ /* adapter_binary.h - definition for the Binary type * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_datetime.c b/psycopg/adapter_datetime.c index 28a7d092..9df26ad1 100644 --- a/psycopg/adapter_datetime.c +++ b/psycopg/adapter_datetime.c @@ -1,7 +1,7 @@ /* adapter_datetime.c - python date/time objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_datetime.h b/psycopg/adapter_datetime.h index 861c0629..7705db31 100644 --- a/psycopg/adapter_datetime.h +++ b/psycopg/adapter_datetime.h @@ -1,7 +1,7 @@ /* adapter_datetime.h - definition for the python date/time types * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_list.c b/psycopg/adapter_list.c index 651dc3ec..e22292b6 100644 --- a/psycopg/adapter_list.c +++ b/psycopg/adapter_list.c @@ -1,7 +1,7 @@ /* adapter_list.c - python list objects * * Copyright (C) 2004-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_list.h b/psycopg/adapter_list.h index ce841e4f..2e00b531 100644 --- a/psycopg/adapter_list.h +++ b/psycopg/adapter_list.h @@ -1,7 +1,7 @@ /* adapter_list.h - definition for the python list types * * Copyright (C) 2004-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pboolean.c b/psycopg/adapter_pboolean.c index 4edc7bd6..6a281190 100644 --- a/psycopg/adapter_pboolean.c +++ b/psycopg/adapter_pboolean.c @@ -1,7 +1,7 @@ /* adapter_pboolean.c - psycopg boolean type wrapper implementation * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pboolean.h b/psycopg/adapter_pboolean.h index b720899d..562fedc0 100644 --- a/psycopg/adapter_pboolean.h +++ b/psycopg/adapter_pboolean.h @@ -1,7 +1,7 @@ /* adapter_pboolean.h - definition for the psycopg boolean type wrapper * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pdecimal.c b/psycopg/adapter_pdecimal.c index a178f885..25a7212d 100644 --- a/psycopg/adapter_pdecimal.c +++ b/psycopg/adapter_pdecimal.c @@ -1,7 +1,7 @@ /* adapter_pdecimal.c - psycopg Decimal type wrapper implementation * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pdecimal.h b/psycopg/adapter_pdecimal.h index c4f15397..24b5ec57 100644 --- a/psycopg/adapter_pdecimal.h +++ b/psycopg/adapter_pdecimal.h @@ -1,7 +1,7 @@ /* adapter_pdecimal.h - definition for the psycopg Decimal type wrapper * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pfloat.c b/psycopg/adapter_pfloat.c index e72e7f14..9893523b 100644 --- a/psycopg/adapter_pfloat.c +++ b/psycopg/adapter_pfloat.c @@ -1,7 +1,7 @@ /* adapter_float.c - psycopg pfloat type wrapper implementation * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pfloat.h b/psycopg/adapter_pfloat.h index 551ebf9e..8a125640 100644 --- a/psycopg/adapter_pfloat.h +++ b/psycopg/adapter_pfloat.h @@ -1,7 +1,7 @@ /* adapter_pfloat.h - definition for the psycopg float type wrapper * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pint.c b/psycopg/adapter_pint.c index 63bfae51..d3cf5080 100644 --- a/psycopg/adapter_pint.c +++ b/psycopg/adapter_pint.c @@ -1,7 +1,7 @@ /* adapter_int.c - psycopg pint type wrapper implementation * * Copyright (C) 2011-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_pint.h b/psycopg/adapter_pint.h index 26be5ed4..49ad8b29 100644 --- a/psycopg/adapter_pint.h +++ b/psycopg/adapter_pint.h @@ -1,7 +1,7 @@ /* adapter_pint.h - definition for the psycopg int type wrapper * * Copyright (C) 2011-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_qstring.c b/psycopg/adapter_qstring.c index ee2de9ab..3a3ad635 100644 --- a/psycopg/adapter_qstring.c +++ b/psycopg/adapter_qstring.c @@ -1,7 +1,7 @@ /* adapter_qstring.c - QuotedString objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/adapter_qstring.h b/psycopg/adapter_qstring.h index 2fa30835..7e139bae 100644 --- a/psycopg/adapter_qstring.h +++ b/psycopg/adapter_qstring.h @@ -1,7 +1,7 @@ /* adapter_qstring.h - definition for the QuotedString type * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/aix_support.c b/psycopg/aix_support.c index dc83a397..941bcab6 100644 --- a/psycopg/aix_support.c +++ b/psycopg/aix_support.c @@ -2,7 +2,7 @@ * * Copyright (C) 2017 My Karlsson * Copyright (c) 2018, Joyent, Inc. - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/aix_support.h b/psycopg/aix_support.h index 81f2bd6c..14c1220c 100644 --- a/psycopg/aix_support.h +++ b/psycopg/aix_support.h @@ -2,7 +2,7 @@ * * Copyright (C) 2017 My Karlsson * Copyright (c) 2018-2019, Joyent, Inc. - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/bytes_format.c b/psycopg/bytes_format.c index ea121252..d34a0171 100644 --- a/psycopg/bytes_format.c +++ b/psycopg/bytes_format.c @@ -1,7 +1,7 @@ /* bytes_format.c - bytes-oriented version of PyString_Format * * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/column.h b/psycopg/column.h index 7d18583f..1173fb55 100644 --- a/psycopg/column.h +++ b/psycopg/column.h @@ -1,7 +1,7 @@ /* column.h - definition for a column in cursor.description type * * Copyright (C) 2018-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/column_type.c b/psycopg/column_type.c index 80e6d31b..2f989507 100644 --- a/psycopg/column_type.c +++ b/psycopg/column_type.c @@ -1,7 +1,7 @@ /* column_type.c - python interface to cursor.description objects * * Copyright (C) 2018-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/config.h b/psycopg/config.h index 7813245e..0830f932 100644 --- a/psycopg/config.h +++ b/psycopg/config.h @@ -1,7 +1,7 @@ /* config.h - general config and Dprintf macro * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/connection.h b/psycopg/connection.h index e4a88aed..6d61c2eb 100644 --- a/psycopg/connection.h +++ b/psycopg/connection.h @@ -1,7 +1,7 @@ /* connection.h - definition for the psycopg connection type * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c index da8a4644..34c69574 100644 --- a/psycopg/connection_int.c +++ b/psycopg/connection_int.c @@ -1,7 +1,7 @@ /* connection_int.c - code used by the connection object * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/connection_type.c b/psycopg/connection_type.c index b826a8bf..92d5a861 100644 --- a/psycopg/connection_type.c +++ b/psycopg/connection_type.c @@ -1,7 +1,7 @@ /* connection_type.c - python interface to connection objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/conninfo.h b/psycopg/conninfo.h index 4063ca81..6887d4b5 100644 --- a/psycopg/conninfo.h +++ b/psycopg/conninfo.h @@ -1,7 +1,7 @@ /* connection.h - definition for the psycopg ConnectionInfo type * * Copyright (C) 2018-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/conninfo_type.c b/psycopg/conninfo_type.c index 6258a073..9a10c94f 100644 --- a/psycopg/conninfo_type.c +++ b/psycopg/conninfo_type.c @@ -1,7 +1,7 @@ /* conninfo_type.c - present information about the libpq connection * * Copyright (C) 2018-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/cursor.h b/psycopg/cursor.h index d946cf70..b50894c1 100644 --- a/psycopg/cursor.h +++ b/psycopg/cursor.h @@ -1,7 +1,7 @@ /* cursor.h - definition for the psycopg cursor type * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/cursor_int.c b/psycopg/cursor_int.c index 7123b0db..7009ee83 100644 --- a/psycopg/cursor_int.c +++ b/psycopg/cursor_int.c @@ -1,7 +1,7 @@ /* cursor_int.c - code used by the cursor object * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/cursor_type.c b/psycopg/cursor_type.c index abab40c0..efdeefcc 100644 --- a/psycopg/cursor_type.c +++ b/psycopg/cursor_type.c @@ -1,7 +1,7 @@ /* cursor_type.c - python interface to cursor objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/diagnostics.h b/psycopg/diagnostics.h index 6abfa320..2e2858dd 100644 --- a/psycopg/diagnostics.h +++ b/psycopg/diagnostics.h @@ -1,7 +1,7 @@ /* diagnostics.c - definition for the psycopg Diagnostics type * * Copyright (C) 2013-2019 Matthew Woodcraft - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/diagnostics_type.c b/psycopg/diagnostics_type.c index 3198312e..a46e7d88 100644 --- a/psycopg/diagnostics_type.c +++ b/psycopg/diagnostics_type.c @@ -1,7 +1,7 @@ /* diagnostics.c - present information from libpq error responses * * Copyright (C) 2013-2019 Matthew Woodcraft - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/error.h b/psycopg/error.h index 44b7619b..33128995 100644 --- a/psycopg/error.h +++ b/psycopg/error.h @@ -1,7 +1,7 @@ /* error.h - definition for the psycopg base Error type * * Copyright (C) 2013-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/error_type.c b/psycopg/error_type.c index 60b2c48e..5fd96e24 100644 --- a/psycopg/error_type.c +++ b/psycopg/error_type.c @@ -1,7 +1,7 @@ /* error_type.c - python interface to the Error objects * * Copyright (C) 2013-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/green.c b/psycopg/green.c index e9dba7ce..9de05e7a 100644 --- a/psycopg/green.c +++ b/psycopg/green.c @@ -1,7 +1,7 @@ /* green.c - cooperation with coroutine libraries. * * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/green.h b/psycopg/green.h index 8bb84294..f4a675ca 100644 --- a/psycopg/green.h +++ b/psycopg/green.h @@ -1,7 +1,7 @@ /* green.c - cooperation with coroutine libraries. * * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/libpq_support.c b/psycopg/libpq_support.c index b122a9ae..d259eca5 100644 --- a/psycopg/libpq_support.c +++ b/psycopg/libpq_support.c @@ -3,7 +3,7 @@ * streaming replication * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/libpq_support.h b/psycopg/libpq_support.h index 4264d3b0..0b304d6a 100644 --- a/psycopg/libpq_support.h +++ b/psycopg/libpq_support.h @@ -1,7 +1,7 @@ /* libpq_support.h - definitions for libpq_support.c * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/lobject.h b/psycopg/lobject.h index ae7c1741..37e6b13b 100644 --- a/psycopg/lobject.h +++ b/psycopg/lobject.h @@ -1,7 +1,7 @@ /* lobject.h - definition for the psycopg lobject type * * Copyright (C) 2006-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/lobject_int.c b/psycopg/lobject_int.c index cf17721a..f0c72c1d 100644 --- a/psycopg/lobject_int.c +++ b/psycopg/lobject_int.c @@ -1,7 +1,7 @@ /* lobject_int.c - code used by the lobject object * * Copyright (C) 2006-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/lobject_type.c b/psycopg/lobject_type.c index 12b6c8de..8376b3a4 100644 --- a/psycopg/lobject_type.c +++ b/psycopg/lobject_type.c @@ -1,7 +1,7 @@ /* lobject_type.c - python interface to lobject objects * * Copyright (C) 2006-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.c b/psycopg/microprotocols.c index 4600bd4b..cbd22da7 100644 --- a/psycopg/microprotocols.c +++ b/psycopg/microprotocols.c @@ -1,7 +1,7 @@ /* microprotocols.c - minimalist and non-validating protocols implementation * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.h b/psycopg/microprotocols.h index ac6fbf83..434e9e9f 100644 --- a/psycopg/microprotocols.h +++ b/psycopg/microprotocols.h @@ -1,7 +1,7 @@ /* microprotocols.c - definitions for minimalist and non-validating protocols * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols_proto.c b/psycopg/microprotocols_proto.c index 00f79e51..d32250ea 100644 --- a/psycopg/microprotocols_proto.c +++ b/psycopg/microprotocols_proto.c @@ -1,7 +1,7 @@ /* microprotocol_proto.c - psycopg protocols * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols_proto.h b/psycopg/microprotocols_proto.h index bc29dcd1..8d47d120 100644 --- a/psycopg/microprotocols_proto.h +++ b/psycopg/microprotocols_proto.h @@ -1,7 +1,7 @@ /* microporotocols_proto.h - definition for psycopg's protocols * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/notify.h b/psycopg/notify.h index ab14ab4b..2641db84 100644 --- a/psycopg/notify.h +++ b/psycopg/notify.h @@ -1,7 +1,7 @@ /* notify.h - definition for the psycopg Notify type * * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/notify_type.c b/psycopg/notify_type.c index 68dd0921..44b66b58 100644 --- a/psycopg/notify_type.c +++ b/psycopg/notify_type.c @@ -1,7 +1,7 @@ /* notify_type.c - python interface to Notify objects * * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/pqpath.c b/psycopg/pqpath.c index ff783ec4..ec020673 100644 --- a/psycopg/pqpath.c +++ b/psycopg/pqpath.c @@ -1,7 +1,7 @@ /* pqpath.c - single path into libpq * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/pqpath.h b/psycopg/pqpath.h index a5559eed..d5ba4d14 100644 --- a/psycopg/pqpath.h +++ b/psycopg/pqpath.h @@ -1,7 +1,7 @@ /* pqpath.h - definitions for pqpath.c * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/psycopg.h b/psycopg/psycopg.h index 67af2990..afda00f4 100644 --- a/psycopg/psycopg.h +++ b/psycopg/psycopg.h @@ -1,7 +1,7 @@ /* psycopg.h - definitions for the psycopg python module * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/psycopgmodule.c b/psycopg/psycopgmodule.c index 57c56ee1..5ab6f5fd 100644 --- a/psycopg/psycopgmodule.c +++ b/psycopg/psycopgmodule.c @@ -1,7 +1,7 @@ /* psycopgmodule.c - psycopg module (will import other C classes) * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/python.h b/psycopg/python.h index 7be45bd4..491d285f 100644 --- a/psycopg/python.h +++ b/psycopg/python.h @@ -1,7 +1,7 @@ /* python.h - python version compatibility stuff * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_connection.h b/psycopg/replication_connection.h index c0cf90ba..bf3c91c8 100644 --- a/psycopg/replication_connection.h +++ b/psycopg/replication_connection.h @@ -1,7 +1,7 @@ /* replication_connection.h - definition for the psycopg replication connection type * * Copyright (C) 2015-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_connection_type.c b/psycopg/replication_connection_type.c index a51e353d..b8c1d2de 100644 --- a/psycopg/replication_connection_type.c +++ b/psycopg/replication_connection_type.c @@ -1,7 +1,7 @@ /* replication_connection_type.c - python interface to replication connection objects * * Copyright (C) 2015-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_cursor.h b/psycopg/replication_cursor.h index c7a0d5e9..d102d734 100644 --- a/psycopg/replication_cursor.h +++ b/psycopg/replication_cursor.h @@ -1,7 +1,7 @@ /* replication_cursor.h - definition for the psycopg replication cursor type * * Copyright (C) 2015-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_cursor_type.c b/psycopg/replication_cursor_type.c index 5ca76526..689a131c 100644 --- a/psycopg/replication_cursor_type.c +++ b/psycopg/replication_cursor_type.c @@ -1,7 +1,7 @@ /* replication_cursor_type.c - python interface to replication cursor objects * * Copyright (C) 2015-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_message.h b/psycopg/replication_message.h index df538af5..c03e6068 100644 --- a/psycopg/replication_message.h +++ b/psycopg/replication_message.h @@ -1,7 +1,7 @@ /* replication_message.h - definition for the psycopg ReplicationMessage type * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/replication_message_type.c b/psycopg/replication_message_type.c index aeff12b9..a137f845 100644 --- a/psycopg/replication_message_type.c +++ b/psycopg/replication_message_type.c @@ -1,7 +1,7 @@ /* replication_message_type.c - python interface to ReplcationMessage objects * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/solaris_support.c b/psycopg/solaris_support.c index 806384fa..da95b382 100644 --- a/psycopg/solaris_support.c +++ b/psycopg/solaris_support.c @@ -2,7 +2,7 @@ * * Copyright (C) 2017 My Karlsson * Copyright (c) 2018, Joyent, Inc. - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/solaris_support.h b/psycopg/solaris_support.h index be1e1acf..ba9a565b 100644 --- a/psycopg/solaris_support.h +++ b/psycopg/solaris_support.h @@ -2,7 +2,7 @@ * * Copyright (C) 2017 My Karlsson * Copyright (c) 2018-2019, Joyent, Inc. - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast.c b/psycopg/typecast.c index 3ac51e79..c1facc49 100644 --- a/psycopg/typecast.c +++ b/psycopg/typecast.c @@ -1,7 +1,7 @@ /* typecast.c - basic utility functions related to typecasting * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast.h b/psycopg/typecast.h index baf1bff1..050345f4 100644 --- a/psycopg/typecast.h +++ b/psycopg/typecast.h @@ -1,7 +1,7 @@ /* typecast.h - definitions for typecasters * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast_array.c b/psycopg/typecast_array.c index ca54414f..7eac99d9 100644 --- a/psycopg/typecast_array.c +++ b/psycopg/typecast_array.c @@ -1,7 +1,7 @@ /* typecast_array.c - array typecasters * * Copyright (C) 2005-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast_basic.c b/psycopg/typecast_basic.c index 9363cf14..f73f60bc 100644 --- a/psycopg/typecast_basic.c +++ b/psycopg/typecast_basic.c @@ -1,7 +1,7 @@ /* pgcasts_basic.c - basic typecasting functions to python types * * Copyright (C) 2001-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast_binary.c b/psycopg/typecast_binary.c index 9dd21944..e255581c 100644 --- a/psycopg/typecast_binary.c +++ b/psycopg/typecast_binary.c @@ -1,7 +1,7 @@ /* typecast_binary.c - binary typecasting functions to python types * * Copyright (C) 2001-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast_binary.h b/psycopg/typecast_binary.h index 041f026e..e6773ed8 100644 --- a/psycopg/typecast_binary.h +++ b/psycopg/typecast_binary.h @@ -1,7 +1,7 @@ /* typecast_binary.h - definitions for binary typecaster * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast_datetime.c b/psycopg/typecast_datetime.c index 121a2282..e5e5110d 100644 --- a/psycopg/typecast_datetime.c +++ b/psycopg/typecast_datetime.c @@ -1,7 +1,7 @@ /* typecast_datetime.c - date and time typecasting functions to python types * * Copyright (C) 2001-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/utils.c b/psycopg/utils.c index d585b2c0..16be9062 100644 --- a/psycopg/utils.c +++ b/psycopg/utils.c @@ -1,7 +1,7 @@ /* utils.c - miscellaneous utility functions * * Copyright (C) 2008-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/utils.h b/psycopg/utils.h index c62b3108..5223d3a5 100644 --- a/psycopg/utils.h +++ b/psycopg/utils.h @@ -1,7 +1,7 @@ /* utils.h - function definitions for utility file * * Copyright (C) 2018-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/win32_support.c b/psycopg/win32_support.c index f39bc44f..e82575a1 100644 --- a/psycopg/win32_support.c +++ b/psycopg/win32_support.c @@ -1,7 +1,7 @@ /* win32_support.c - emulate some functions missing on Win32 * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/win32_support.h b/psycopg/win32_support.h index c803beff..9fca0d6a 100644 --- a/psycopg/win32_support.h +++ b/psycopg/win32_support.h @@ -1,7 +1,7 @@ /* win32_support.h - definitions for win32_support.c * * Copyright (C) 2003-2019 Federico Di Gregorio - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/xid.h b/psycopg/xid.h index 873fa00e..d8d90bd2 100644 --- a/psycopg/xid.h +++ b/psycopg/xid.h @@ -2,7 +2,7 @@ * * Copyright (C) 2008-2019 James Henstridge * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/xid_type.c b/psycopg/xid_type.c index 2ac36ed8..094c58c6 100644 --- a/psycopg/xid_type.c +++ b/psycopg/xid_type.c @@ -2,7 +2,7 @@ * * Copyright (C) 2008 Canonical Ltd. * Copyright (C) 2010-2019 Daniele Varrazzo - * Copyright (C) 2020 The Psycopg Team + * Copyright (C) 2020-2021 The Psycopg Team * * This file is part of psycopg. * diff --git a/scripts/make_errorcodes.py b/scripts/make_errorcodes.py index 6152db75..66ca87b6 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -5,7 +5,7 @@ The script can be run at a new PostgreSQL release to refresh the module. """ # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/scripts/make_errors.py b/scripts/make_errors.py index 0b4f0b16..fb22708f 100755 --- a/scripts/make_errors.py +++ b/scripts/make_errors.py @@ -5,7 +5,7 @@ The script can be run at a new PostgreSQL release to refresh the module. """ # Copyright (C) 2018-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/scripts/refcounter.py b/scripts/refcounter.py index 6de2f6d8..e916dfad 100755 --- a/scripts/refcounter.py +++ b/scripts/refcounter.py @@ -7,7 +7,7 @@ script exits with error 1. """ # Copyright (C) 2011-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/setup.py b/setup.py index a844db14..2c49cf44 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # setup.py - distutils packaging # # Copyright (C) 2003-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/__init__.py b/tests/__init__.py index 76a01ee1..65023752 100755 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -3,7 +3,7 @@ # psycopg2 test suite # # Copyright (C) 2007-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_async.py b/tests/test_async.py index fdc42246..ee6651d7 100755 --- a/tests/test_async.py +++ b/tests/test_async.py @@ -3,7 +3,7 @@ # test_async.py - unit test for asynchronous API # # Copyright (C) 2010-2019 Jan Urbański -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_bugX000.py b/tests/test_bugX000.py index 743098cf..b7c672f2 100755 --- a/tests/test_bugX000.py +++ b/tests/test_bugX000.py @@ -3,7 +3,7 @@ # bugX000.py - test for DateTime object allocation bug # # Copyright (C) 2007-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_bug_gc.py b/tests/test_bug_gc.py index 3d0b789e..650d1a55 100755 --- a/tests/test_bug_gc.py +++ b/tests/test_bug_gc.py @@ -3,7 +3,7 @@ # bug_gc.py - test for refcounting/GC bug # # Copyright (C) 2010-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_cancel.py b/tests/test_cancel.py index 1f7d586c..9320d3e5 100755 --- a/tests/test_cancel.py +++ b/tests/test_cancel.py @@ -3,7 +3,7 @@ # test_cancel.py - unit test for query cancellation # # Copyright (C) 2010-2019 Jan Urbański -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_connection.py b/tests/test_connection.py index 96a83012..c8009cd0 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -3,7 +3,7 @@ # test_connection.py - unit test for connection attributes # # Copyright (C) 2008-2019 James Henstridge -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_copy.py b/tests/test_copy.py index 637fe0c5..a36cf918 100755 --- a/tests/test_copy.py +++ b/tests/test_copy.py @@ -3,7 +3,7 @@ # test_copy.py - unit test for COPY support # # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_cursor.py b/tests/test_cursor.py index 0549e3cf..04f535a5 100755 --- a/tests/test_cursor.py +++ b/tests/test_cursor.py @@ -3,7 +3,7 @@ # test_cursor.py - unit test for cursor attributes # # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_dates.py b/tests/test_dates.py index d4d2e7fe..7f52a916 100755 --- a/tests/test_dates.py +++ b/tests/test_dates.py @@ -3,7 +3,7 @@ # test_dates.py - unit test for dates handling # # Copyright (C) 2008-2019 James Henstridge -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_errcodes.py b/tests/test_errcodes.py index 88afd9d1..139c1ade 100755 --- a/tests/test_errcodes.py +++ b/tests/test_errcodes.py @@ -3,7 +3,7 @@ # test_errcodes.py - unit test for psycopg2.errcodes module # # Copyright (C) 2015-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_errors.py b/tests/test_errors.py index ec2950c5..e3b5b237 100755 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -3,7 +3,7 @@ # test_errors.py - unit test for psycopg2.errors module # # Copyright (C) 2018-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_extras_dictcursor.py b/tests/test_extras_dictcursor.py index 4c63db75..186daf30 100755 --- a/tests/test_extras_dictcursor.py +++ b/tests/test_extras_dictcursor.py @@ -3,7 +3,7 @@ # extras_dictcursor - test if DictCursor extension class works # # Copyright (C) 2004-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_fast_executemany.py b/tests/test_fast_executemany.py index a153ef09..289af5ee 100755 --- a/tests/test_fast_executemany.py +++ b/tests/test_fast_executemany.py @@ -3,7 +3,7 @@ # test_fast_executemany.py - tests for fast executemany implementations # # Copyright (C) 2017-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_green.py b/tests/test_green.py index fa9f2989..e3a49467 100755 --- a/tests/test_green.py +++ b/tests/test_green.py @@ -3,7 +3,7 @@ # test_green.py - unit test for async wait callback # # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_ipaddress.py b/tests/test_ipaddress.py index 451ec0b7..4a2339ef 100755 --- a/tests/test_ipaddress.py +++ b/tests/test_ipaddress.py @@ -3,7 +3,7 @@ # test_ipaddress.py - tests for ipaddress support # # Copyright (C) 2016-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_lobject.py b/tests/test_lobject.py index 8d946564..2ea5c912 100755 --- a/tests/test_lobject.py +++ b/tests/test_lobject.py @@ -3,7 +3,7 @@ # test_lobject.py - unit test for large objects support # # Copyright (C) 2008-2019 James Henstridge -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_module.py b/tests/test_module.py index 5b47ba2c..7c032597 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -3,7 +3,7 @@ # test_module.py - unit test for the module interface # # Copyright (C) 2011-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_notify.py b/tests/test_notify.py index a3586f8a..03ab4cde 100755 --- a/tests/test_notify.py +++ b/tests/test_notify.py @@ -3,7 +3,7 @@ # test_notify.py - unit test for async notifications # # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_psycopg2_dbapi20.py b/tests/test_psycopg2_dbapi20.py index a38de145..304c24dd 100755 --- a/tests/test_psycopg2_dbapi20.py +++ b/tests/test_psycopg2_dbapi20.py @@ -3,7 +3,7 @@ # test_psycopg2_dbapi20.py - DB API conformance test for psycopg2 # # Copyright (C) 2006-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_quote.py b/tests/test_quote.py index 98ec4941..69d26003 100755 --- a/tests/test_quote.py +++ b/tests/test_quote.py @@ -3,7 +3,7 @@ # test_quote.py - unit test for strings quoting # # Copyright (C) 2007-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_replication.py b/tests/test_replication.py index 569ed398..8ca2187f 100755 --- a/tests/test_replication.py +++ b/tests/test_replication.py @@ -3,7 +3,7 @@ # test_replication.py - unit test for replication protocol # # Copyright (C) 2015-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_sql.py b/tests/test_sql.py index 2d96208a..8fb1f114 100755 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -3,7 +3,7 @@ # test_sql.py - tests for the psycopg2.sql module # # Copyright (C) 2016-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_transaction.py b/tests/test_transaction.py index 15a1ac29..315d63ea 100755 --- a/tests/test_transaction.py +++ b/tests/test_transaction.py @@ -3,7 +3,7 @@ # test_transaction - unit test on transaction behaviour # # Copyright (C) 2007-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_types_basic.py b/tests/test_types_basic.py index e5ee5522..d21309ef 100755 --- a/tests/test_types_basic.py +++ b/tests/test_types_basic.py @@ -3,7 +3,7 @@ # types_basic.py - tests for basic types conversions # # Copyright (C) 2004-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_types_extras.py b/tests/test_types_extras.py index 26500eb9..77f89985 100755 --- a/tests/test_types_extras.py +++ b/tests/test_types_extras.py @@ -3,7 +3,7 @@ # types_extras.py - tests for extras types conversions # # Copyright (C) 2008-2019 Federico Di Gregorio -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/test_with.py b/tests/test_with.py index f52c747f..f71989dc 100755 --- a/tests/test_with.py +++ b/tests/test_with.py @@ -3,7 +3,7 @@ # test_ctxman.py - unit test for connection and cursor used as context manager # # Copyright (C) 2012-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/tests/testutils.py b/tests/testutils.py index 3f8ceb3a..1384e843 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -2,7 +2,7 @@ # # Copyright (C) 2010-2019 Daniele Varrazzo -# Copyright (C) 2020 The Psycopg Team +# Copyright (C) 2020-2021 The Psycopg Team # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published