diff --git a/doc/src/conf.py b/doc/src/conf.py index b2999428..f81c4841 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ master_doc = 'index' # General information about the project. project = u'Psycopg' -copyright = u'2001-2020, Federico Di Gregorio, Daniele Varrazzo' +copyright = u'2001-2020, Federico Di Gregorio, Daniele Varrazzo, The Psycopg Team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/lib/__init__.py b/lib/__init__.py index ef725da7..3cd46404 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -19,6 +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 # # 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 23fd52a4..9350c8de 100644 --- a/lib/_ipaddress.py +++ b/lib/_ipaddress.py @@ -4,6 +4,7 @@ # psycopg/_ipaddress.py - Ipaddres-based network types adaptation # # Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020 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 880084d7..eac37972 100644 --- a/lib/_json.py +++ b/lib/_json.py @@ -8,6 +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 # # 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 03b314cb..b668fb63 100644 --- a/lib/_range.py +++ b/lib/_range.py @@ -5,6 +5,7 @@ # psycopg/_range.py - Implementation of the Range type and adaptation # # Copyright (C) 2012-2019 Daniele Varrazzo +# Copyright (C) 2020 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 c2cf42b3..fc5261ad 100644 --- a/lib/errorcodes.py +++ b/lib/errorcodes.py @@ -5,6 +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 # # 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 79d3ff42..98983fff 100644 --- a/lib/errors.py +++ b/lib/errors.py @@ -4,6 +4,7 @@ # psycopg/errors.py - SQLSTATE and DB-API exceptions # # Copyright (C) 2018-2019 Daniele Varrazzo +# Copyright (C) 2020 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 896f8bd4..c4a66186 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -13,6 +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 # # 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 f6d17183..236a5b7e 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -6,6 +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 # # 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 4a5f0b5c..30a29c33 100644 --- a/lib/pool.py +++ b/lib/pool.py @@ -5,6 +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 # # 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 93aa8c3e..68834522 100644 --- a/lib/sql.py +++ b/lib/sql.py @@ -4,6 +4,7 @@ # psycopg/sql.py - SQL composition utility module # # Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020 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 59dacb45..ccbe374a 100644 --- a/lib/tz.py +++ b/lib/tz.py @@ -7,6 +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 # # 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 07644cc4..d0cb5059 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 + * 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 70064149..370cda6c 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 + * 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 e4c1b241..693ce31f 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 + * 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 dff47e37..a1ff2745 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 + * 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 01b12d11..74b55582 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 + * 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 b6afa09d..861c0629 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 + * 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 f8c16040..651dc3ec 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 + * 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 538ec900..ce841e4f 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 + * 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 4c2e274c..125bd14f 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 + * 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 4b1df689..93d59322 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 + * 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 2d6c4f51..4edc7bd6 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 + * 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 15e14cd6..b720899d 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 + * 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 2712964e..f42fdef3 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 + * 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 87fbf919..c4f15397 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 + * 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 44bf5f7f..22436334 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 + * 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 d7ad2d9f..551ebf9e 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 + * 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 6023ae05..27847599 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 + * 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 985a4585..26be5ed4 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 + * 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 302e5156..ee2de9ab 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 + * 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 c06d98b4..2fa30835 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 + * 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 d363b49b..ea121252 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/column.h b/psycopg/column.h index 29de1c61..7d18583f 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 + * 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 666b519f..4947af2a 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/config.h b/psycopg/config.h index 4fba0036..7813245e 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/connection.h b/psycopg/connection.h index 829ef5a2..a78cdcec 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 + * 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 0629523e..78dbd469 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 + * 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 bc88d787..25299fab 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/conninfo.h b/psycopg/conninfo.h index 2489e62a..4063ca81 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 + * 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 42076ab6..6258a073 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/cursor.h b/psycopg/cursor.h index d74069a4..d946cf70 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 + * 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 57824c23..7123b0db 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 + * 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 b5c08dcf..a7bd11b4 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/diagnostics.h b/psycopg/diagnostics.h index 95c1a615..6abfa320 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 + * 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 efbce5f2..3198312e 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/error.h b/psycopg/error.h index a8ba99d2..44b7619b 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 + * 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 bf5894ca..37b4d4ae 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/green.c b/psycopg/green.c index d2d73838..e9dba7ce 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/green.h b/psycopg/green.h index 352cf5f3..8bb84294 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 + * 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 851a72d4..b122a9ae 100644 --- a/psycopg/libpq_support.c +++ b/psycopg/libpq_support.c @@ -3,6 +3,7 @@ * streaming replication * * Copyright (C) 2003-2019 Federico Di Gregorio + * 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 824ff4bd..4264d3b0 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/lobject.h b/psycopg/lobject.h index dbda73ec..ae7c1741 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 + * 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 973f1630..71a8bfb4 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 + * 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 e84de824..12b6c8de 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.c b/psycopg/microprotocols.c index ba73f905..19408fe3 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.h b/psycopg/microprotocols.h index 42adf668..ac6fbf83 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 + * 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 dbad99a6..00f79e51 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 + * 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 4f33fdb6..bc29dcd1 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/notify.h b/psycopg/notify.h index bff1a283..ab14ab4b 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 + * 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 a7c3a013..68dd0921 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/pqpath.c b/psycopg/pqpath.c index a9ce0a36..e52ba187 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/pqpath.h b/psycopg/pqpath.h index eb0578a5..a5559eed 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/psycopg.h b/psycopg/psycopg.h index 7bd3810e..67af2990 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/psycopgmodule.c b/psycopg/psycopgmodule.c index c6f09633..14e44369 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/python.h b/psycopg/python.h index f45aeb5a..2a5f9d83 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 + * 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 1f7167bb..c0cf90ba 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 + * 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 0a836a9a..a51e353d 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 + * 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 ba066b52..c7a0d5e9 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 + * 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 c1dbd431..5ca76526 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 + * 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 710114a8..df538af5 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 + * 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 c18b6250..aeff12b9 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 + * 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 e5f8edf6..806384fa 100644 --- a/psycopg/solaris_support.c +++ b/psycopg/solaris_support.c @@ -2,6 +2,7 @@ * * Copyright (C) 2017 My Karlsson * 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 8cfb409c..be1e1acf 100644 --- a/psycopg/solaris_support.h +++ b/psycopg/solaris_support.h @@ -2,6 +2,7 @@ * * Copyright (C) 2017 My Karlsson * 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 1aab80f0..021fb0c3 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/typecast.h b/psycopg/typecast.h index cbc11bac..baf1bff1 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 + * 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 99cadb5c..ca54414f 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 + * 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 51ba2458..f3fac98b 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 + * 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 c3753917..032d0f1b 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 + * 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 30f5ad71..041f026e 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 + * 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 2fd96899..095fce17 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 + * 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 bee08071..d308f136 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/utils.c b/psycopg/utils.c index eb24358e..33b3aa88 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/utils.h b/psycopg/utils.h index 72658de4..c62b3108 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 + * 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 45501b51..f39bc44f 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 + * 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 a49d5dec..c803beff 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/psycopg/xid.h b/psycopg/xid.h index 5c6fc079..873fa00e 100644 --- a/psycopg/xid.h +++ b/psycopg/xid.h @@ -2,6 +2,7 @@ * * Copyright (C) 2008-2019 James Henstridge * Copyright (C) 2010-2019 Daniele Varrazzo + * 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 dfa3539e..a4e05cb6 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 + * Copyright (C) 2020 The Psycopg Team * * This file is part of psycopg. * diff --git a/scripts/make_errorcodes.py b/scripts/make_errorcodes.py index 29503dae..1370ec84 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -5,6 +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 # # 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 ecb74eb5..91ed2757 100755 --- a/scripts/make_errors.py +++ b/scripts/make_errors.py @@ -5,6 +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 # # 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 66a7568c..5477c05f 100755 --- a/scripts/refcounter.py +++ b/scripts/refcounter.py @@ -7,6 +7,7 @@ script exits with error 1. """ # Copyright (C) 2011-2019 Daniele Varrazzo +# Copyright (C) 2020 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 ff0e0aa7..badf5d8f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ # setup.py - distutils packaging # # Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020 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 cad2a9a4..f5c422f4 100755 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -3,6 +3,7 @@ # psycopg2 test suite # # Copyright (C) 2007-2019 Federico Di Gregorio +# Copyright (C) 2020 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 85137286..d62eb3b0 100755 --- a/tests/test_async.py +++ b/tests/test_async.py @@ -4,6 +4,7 @@ # test_async.py - unit test for asynchronous API # # Copyright (C) 2010-2019 Jan Urbański +# Copyright (C) 2020 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_keyword.py b/tests/test_async_keyword.py index 882011cc..e1126928 100755 --- a/tests/test_async_keyword.py +++ b/tests/test_async_keyword.py @@ -4,6 +4,7 @@ # test_async_keyword.py - test for objects using 'async' as attribute/param # # Copyright (C) 2017-2019 Daniele Varrazzo +# Copyright (C) 2020 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 8ad025d5..743098cf 100755 --- a/tests/test_bugX000.py +++ b/tests/test_bugX000.py @@ -3,6 +3,7 @@ # bugX000.py - test for DateTime object allocation bug # # Copyright (C) 2007-2019 Federico Di Gregorio +# Copyright (C) 2020 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 6bfd70a4..3d0b789e 100755 --- a/tests/test_bug_gc.py +++ b/tests/test_bug_gc.py @@ -3,6 +3,7 @@ # bug_gc.py - test for refcounting/GC bug # # Copyright (C) 2010-2019 Federico Di Gregorio +# Copyright (C) 2020 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 cc17be74..4c60c0b7 100755 --- a/tests/test_cancel.py +++ b/tests/test_cancel.py @@ -4,6 +4,7 @@ # test_cancel.py - unit test for query cancellation # # Copyright (C) 2010-2019 Jan Urbański +# Copyright (C) 2020 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 b5627075..f1668d55 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -3,6 +3,7 @@ # test_connection.py - unit test for connection attributes # # Copyright (C) 2008-2019 James Henstridge +# Copyright (C) 2020 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 b0490f54..4fdf1641 100755 --- a/tests/test_copy.py +++ b/tests/test_copy.py @@ -3,6 +3,7 @@ # test_copy.py - unit test for COPY support # # Copyright (C) 2010-2019 Daniele Varrazzo +# Copyright (C) 2020 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 ce1b0cb9..4d180962 100755 --- a/tests/test_cursor.py +++ b/tests/test_cursor.py @@ -3,6 +3,7 @@ # test_cursor.py - unit test for cursor attributes # # Copyright (C) 2010-2019 Daniele Varrazzo +# Copyright (C) 2020 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 58298223..b9aac695 100755 --- a/tests/test_dates.py +++ b/tests/test_dates.py @@ -3,6 +3,7 @@ # test_dates.py - unit test for dates handling # # Copyright (C) 2008-2019 James Henstridge +# Copyright (C) 2020 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 676d12d2..3074bae1 100755 --- a/tests/test_errcodes.py +++ b/tests/test_errcodes.py @@ -3,6 +3,7 @@ # test_errcodes.py - unit test for psycopg2.errcodes module # # Copyright (C) 2015-2019 Daniele Varrazzo +# Copyright (C) 2020 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 072688e3..bd3e7fd6 100755 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -3,6 +3,7 @@ # test_errors.py - unit test for psycopg2.errors module # # Copyright (C) 2018-2019 Daniele Varrazzo +# Copyright (C) 2020 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 5f205ca9..d4bb12f5 100755 --- a/tests/test_extras_dictcursor.py +++ b/tests/test_extras_dictcursor.py @@ -3,6 +3,7 @@ # extras_dictcursor - test if DictCursor extension class works # # Copyright (C) 2004-2019 Federico Di Gregorio +# Copyright (C) 2020 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 e0597443..eaba029c 100755 --- a/tests/test_fast_executemany.py +++ b/tests/test_fast_executemany.py @@ -3,6 +3,7 @@ # test_fast_executemany.py - tests for fast executemany implementations # # Copyright (C) 2017-2019 Daniele Varrazzo +# Copyright (C) 2020 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 46f18dcb..e56ce586 100755 --- a/tests/test_green.py +++ b/tests/test_green.py @@ -3,6 +3,7 @@ # test_green.py - unit test for async wait callback # # Copyright (C) 2010-2019 Daniele Varrazzo +# Copyright (C) 2020 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 bf394211..ccbae291 100755 --- a/tests/test_ipaddress.py +++ b/tests/test_ipaddress.py @@ -3,6 +3,7 @@ # test_ipaddress.py - tests for ipaddress support # # Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020 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 e91a2d01..cae344f4 100755 --- a/tests/test_lobject.py +++ b/tests/test_lobject.py @@ -3,6 +3,7 @@ # test_lobject.py - unit test for large objects support # # Copyright (C) 2008-2019 James Henstridge +# Copyright (C) 2020 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 fd8ae46a..416e6237 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -3,6 +3,7 @@ # test_module.py - unit test for the module interface # # Copyright (C) 2011-2019 Daniele Varrazzo +# Copyright (C) 2020 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 576379ac..51865e64 100755 --- a/tests/test_notify.py +++ b/tests/test_notify.py @@ -3,6 +3,7 @@ # test_notify.py - unit test for async notifications # # Copyright (C) 2010-2019 Daniele Varrazzo +# Copyright (C) 2020 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 46f3cebb..a38de145 100755 --- a/tests/test_psycopg2_dbapi20.py +++ b/tests/test_psycopg2_dbapi20.py @@ -3,6 +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 # # 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 cbba08c9..42e90eb7 100755 --- a/tests/test_quote.py +++ b/tests/test_quote.py @@ -3,6 +3,7 @@ # test_quote.py - unit test for strings quoting # # Copyright (C) 2007-2019 Daniele Varrazzo +# Copyright (C) 2020 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 e4de20ba..3ed68a57 100755 --- a/tests/test_replication.py +++ b/tests/test_replication.py @@ -3,6 +3,7 @@ # test_replication.py - unit test for replication protocol # # Copyright (C) 2015-2019 Daniele Varrazzo +# Copyright (C) 2020 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 cc7f6cd5..9089ae77 100755 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -3,6 +3,7 @@ # test_sql.py - tests for the psycopg2.sql module # # Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020 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 b48633f0..25feba0b 100755 --- a/tests/test_transaction.py +++ b/tests/test_transaction.py @@ -3,6 +3,7 @@ # test_transaction - unit test on transaction behaviour # # Copyright (C) 2007-2019 Federico Di Gregorio +# Copyright (C) 2020 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 a0f2d7c0..a6b7af03 100755 --- a/tests/test_types_basic.py +++ b/tests/test_types_basic.py @@ -3,6 +3,7 @@ # types_basic.py - tests for basic types conversions # # Copyright (C) 2004-2019 Federico Di Gregorio +# Copyright (C) 2020 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 8be629f2..91e4a8ea 100755 --- a/tests/test_types_extras.py +++ b/tests/test_types_extras.py @@ -3,6 +3,7 @@ # types_extras.py - tests for extras types conversions # # Copyright (C) 2008-2019 Federico Di Gregorio +# Copyright (C) 2020 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 df95b92c..b8c043f6 100755 --- a/tests/test_with.py +++ b/tests/test_with.py @@ -3,6 +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 # # 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 919135f4..26f6cc71 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -2,6 +2,7 @@ # # Copyright (C) 2010-2019 Daniele Varrazzo +# Copyright (C) 2020 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