diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2019-02-17 01:34:52 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2019-02-17 01:36:36 +0000 |
commit | 599432552aae4941c2b282e9251330f1357b2a45 (patch) | |
tree | ac98b65422d95ddec935cc11f060abf3a7fc2714 | |
parent | d177fa9bd01841193b06606ce2c396a945f86b0c (diff) | |
download | psycopg2-599432552aae4941c2b282e9251330f1357b2a45.tar.gz |
Copyright year updated
ag -l Copyright | xargs sed -i \
"s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
118 files changed, 120 insertions, 120 deletions
diff --git a/doc/src/conf.py b/doc/src/conf.py index fa22a91..820cad4 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-2016, Federico Di Gregorio, Daniele Varrazzo' +copyright = u'2001-2019, Federico Di Gregorio, Daniele Varrazzo' # 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 1c1a9e0..909cf0e 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -18,7 +18,7 @@ Homepage: http://initd.org/projects/psycopg2 """ # psycopg/__init__.py - initialization of the psycopg module # -# Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # 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 beb2fb3..23fd52a 100644 --- a/lib/_ipaddress.py +++ b/lib/_ipaddress.py @@ -3,7 +3,7 @@ # psycopg/_ipaddress.py - Ipaddres-based network types adaptation # -# Copyright (C) 2016 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 0438c25..79af856 100644 --- a/lib/_json.py +++ b/lib/_json.py @@ -7,7 +7,7 @@ extensions importing register_json from extras. # psycopg/_json.py - Implementation of the JSON adaptation objects # -# Copyright (C) 2012 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2012-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 309b274..03b314c 100644 --- a/lib/_range.py +++ b/lib/_range.py @@ -4,7 +4,7 @@ # psycopg/_range.py - Implementation of the Range type and adaptation # -# Copyright (C) 2012 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2012-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 beee37c..ef6667e 100644 --- a/lib/errorcodes.py +++ b/lib/errorcodes.py @@ -4,7 +4,7 @@ This module contains symbolic names for all PostgreSQL error codes. """ # psycopg2/errorcodes.py - PostgreSQL error codes # -# Copyright (C) 2006-2010 Johan Dahlin <jdahlin@async.com.br> +# Copyright (C) 2006-2019 Johan Dahlin <jdahlin@async.com.br> # # 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 1563575..ef514a1 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -12,7 +12,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-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # 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 d73c5b2..0ae2582 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -5,7 +5,7 @@ and classes until a better place in the distribution is found. """ # psycopg/extras.py - miscellaneous extra goodies for psycopg # -# Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # 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 919fefd..c4b5320 100644 --- a/lib/pool.py +++ b/lib/pool.py @@ -4,7 +4,7 @@ This module implements thread-safe (and not) connection pools. """ # psycopg/pool.py - pooling code for psycopg # -# Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published @@ -3,7 +3,7 @@ # psycopg/sql.py - SQL composition utility module # -# Copyright (C) 2016 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published @@ -6,7 +6,7 @@ functions or used to set the .tzinfo_factory attribute in cursors. """ # psycopg/tz.py - tzinfo implementation # -# Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # 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 d64b141..7b6f534 100644 --- a/psycopg/adapter_asis.c +++ b/psycopg/adapter_asis.c @@ -1,6 +1,6 @@ /* adapter_asis.c - adapt types as they are * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_asis.h b/psycopg/adapter_asis.h index 0e1caae..7006414 100644 --- a/psycopg/adapter_asis.h +++ b/psycopg/adapter_asis.h @@ -1,6 +1,6 @@ /* adapter_asis.h - definition for the psycopg AsIs type wrapper * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_binary.c b/psycopg/adapter_binary.c index 1727b19..dfe9c66 100644 --- a/psycopg/adapter_binary.c +++ b/psycopg/adapter_binary.c @@ -1,6 +1,6 @@ /* adapter_binary.c - Binary objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_binary.h b/psycopg/adapter_binary.h index 1c12b07..dff47e3 100644 --- a/psycopg/adapter_binary.h +++ b/psycopg/adapter_binary.h @@ -1,6 +1,6 @@ /* adapter_binary.h - definition for the Binary type * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_datetime.c b/psycopg/adapter_datetime.c index b201ae2..e76dc26 100644 --- a/psycopg/adapter_datetime.c +++ b/psycopg/adapter_datetime.c @@ -1,6 +1,6 @@ /* adapter_datetime.c - python date/time objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_datetime.h b/psycopg/adapter_datetime.h index 6cc7589..47b33ea 100644 --- a/psycopg/adapter_datetime.h +++ b/psycopg/adapter_datetime.h @@ -1,6 +1,6 @@ /* adapter_datetime.h - definition for the python date/time types * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_list.c b/psycopg/adapter_list.c index 889c5f8..7b93d63 100644 --- a/psycopg/adapter_list.c +++ b/psycopg/adapter_list.c @@ -1,6 +1,6 @@ /* adapter_list.c - python list objects * - * Copyright (C) 2004-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_list.h b/psycopg/adapter_list.h index e5bf77e..538ec90 100644 --- a/psycopg/adapter_list.h +++ b/psycopg/adapter_list.h @@ -1,6 +1,6 @@ /* adapter_list.h - definition for the python list types * - * Copyright (C) 2004-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_mxdatetime.c b/psycopg/adapter_mxdatetime.c index 94642df..9f17da1 100644 --- a/psycopg/adapter_mxdatetime.c +++ b/psycopg/adapter_mxdatetime.c @@ -1,6 +1,6 @@ /* adapter_mxdatetime.c - mx date/time objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_mxdatetime.h b/psycopg/adapter_mxdatetime.h index bd9d4c9..1b5d2a6 100644 --- a/psycopg/adapter_mxdatetime.h +++ b/psycopg/adapter_mxdatetime.h @@ -1,6 +1,6 @@ /* adapter_mxdatetime.h - definition for the mx date/time types * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pboolean.c b/psycopg/adapter_pboolean.c index c7e3b80..9e3ea7d 100644 --- a/psycopg/adapter_pboolean.c +++ b/psycopg/adapter_pboolean.c @@ -1,6 +1,6 @@ /* adapter_pboolean.c - psycopg boolean type wrapper implementation * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pboolean.h b/psycopg/adapter_pboolean.h index bd642bf..15e14cd 100644 --- a/psycopg/adapter_pboolean.h +++ b/psycopg/adapter_pboolean.h @@ -1,6 +1,6 @@ /* adapter_pboolean.h - definition for the psycopg boolean type wrapper * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pdecimal.c b/psycopg/adapter_pdecimal.c index fcff9d2..2b839f7 100644 --- a/psycopg/adapter_pdecimal.c +++ b/psycopg/adapter_pdecimal.c @@ -1,6 +1,6 @@ /* adapter_pdecimal.c - psycopg Decimal type wrapper implementation * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pdecimal.h b/psycopg/adapter_pdecimal.h index 4a38e29..87fbf91 100644 --- a/psycopg/adapter_pdecimal.h +++ b/psycopg/adapter_pdecimal.h @@ -1,6 +1,6 @@ /* adapter_pdecimal.h - definition for the psycopg Decimal type wrapper * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pfloat.c b/psycopg/adapter_pfloat.c index c33ccae..3dbc8ef 100644 --- a/psycopg/adapter_pfloat.c +++ b/psycopg/adapter_pfloat.c @@ -1,6 +1,6 @@ /* adapter_float.c - psycopg pfloat type wrapper implementation * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pfloat.h b/psycopg/adapter_pfloat.h index 2c0af47..d7ad2d9 100644 --- a/psycopg/adapter_pfloat.h +++ b/psycopg/adapter_pfloat.h @@ -1,6 +1,6 @@ /* adapter_pfloat.h - definition for the psycopg float type wrapper * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pint.c b/psycopg/adapter_pint.c index 72bbdbf..b2b869f 100644 --- a/psycopg/adapter_pint.c +++ b/psycopg/adapter_pint.c @@ -1,6 +1,6 @@ /* adapter_int.c - psycopg pint type wrapper implementation * - * Copyright (C) 2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/adapter_pint.h b/psycopg/adapter_pint.h index 5488d24..985a458 100644 --- a/psycopg/adapter_pint.h +++ b/psycopg/adapter_pint.h @@ -1,6 +1,6 @@ /* adapter_pint.h - definition for the psycopg int type wrapper * - * Copyright (C) 2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/adapter_qstring.c b/psycopg/adapter_qstring.c index 0a4e7e8..9b06704 100644 --- a/psycopg/adapter_qstring.c +++ b/psycopg/adapter_qstring.c @@ -1,6 +1,6 @@ /* adapter_qstring.c - QuotedString objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/adapter_qstring.h b/psycopg/adapter_qstring.h index 8abdc5f..c06d98b 100644 --- a/psycopg/adapter_qstring.h +++ b/psycopg/adapter_qstring.h @@ -1,6 +1,6 @@ /* adapter_qstring.h - definition for the QuotedString type * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/bytes_format.c b/psycopg/bytes_format.c index 1693969..d363b49 100644 --- a/psycopg/bytes_format.c +++ b/psycopg/bytes_format.c @@ -1,6 +1,6 @@ /* bytes_format.c - bytes-oriented version of PyString_Format * - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * @@ -41,7 +41,7 @@ * analyze, test, perform and/or display publicly, prepare derivative works, * distribute, and otherwise use Python alone or in any derivative version, * provided, however, that PSF's License Agreement and PSF's notice of copyright, - * i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + * i.e., "Copyright (c) 2001-2019, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 * Python Software Foundation; All Rights Reserved" are retained in Python alone or * in any derivative version prepared by Licensee. * diff --git a/psycopg/column.h b/psycopg/column.h index 59e9d9c..29de1c6 100644 --- a/psycopg/column.h +++ b/psycopg/column.h @@ -1,6 +1,6 @@ /* column.h - definition for a column in cursor.description type * - * Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/column_type.c b/psycopg/column_type.c index 1c0f7f9..666b519 100644 --- a/psycopg/column_type.c +++ b/psycopg/column_type.c @@ -1,6 +1,6 @@ /* column_type.c - python interface to cursor.description objects * - * Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/config.h b/psycopg/config.h index 6b33c2c..c9a7f89 100644 --- a/psycopg/config.h +++ b/psycopg/config.h @@ -1,6 +1,6 @@ /* config.h - general config and Dprintf macro * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/connection.h b/psycopg/connection.h index 6b1f244..60ec620 100644 --- a/psycopg/connection.h +++ b/psycopg/connection.h @@ -1,6 +1,6 @@ /* connection.h - definition for the psycopg connection type * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c index 17509cf..aea85b9 100644 --- a/psycopg/connection_int.c +++ b/psycopg/connection_int.c @@ -1,6 +1,6 @@ /* connection_int.c - code used by the connection object * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/connection_type.c b/psycopg/connection_type.c index d360d5d..d4a969b 100644 --- a/psycopg/connection_type.c +++ b/psycopg/connection_type.c @@ -1,6 +1,6 @@ /* connection_type.c - python interface to connection objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/conninfo.h b/psycopg/conninfo.h index d04c520..2489e62 100644 --- a/psycopg/conninfo.h +++ b/psycopg/conninfo.h @@ -1,6 +1,6 @@ /* connection.h - definition for the psycopg ConnectionInfo type * - * Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/conninfo_type.c b/psycopg/conninfo_type.c index ed193ce..af099d4 100644 --- a/psycopg/conninfo_type.c +++ b/psycopg/conninfo_type.c @@ -1,6 +1,6 @@ /* conninfo_type.c - present information about the libpq connection * - * Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/cursor.h b/psycopg/cursor.h index 300b891..30d0d34 100644 --- a/psycopg/cursor.h +++ b/psycopg/cursor.h @@ -1,6 +1,6 @@ /* cursor.h - definition for the psycopg cursor type * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/cursor_int.c b/psycopg/cursor_int.c index bacef77..bebbeaa 100644 --- a/psycopg/cursor_int.c +++ b/psycopg/cursor_int.c @@ -1,6 +1,6 @@ /* cursor_int.c - code used by the cursor object * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/cursor_type.c b/psycopg/cursor_type.c index 3153047..875be66 100644 --- a/psycopg/cursor_type.c +++ b/psycopg/cursor_type.c @@ -1,6 +1,6 @@ /* cursor_type.c - python interface to cursor objects * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/diagnostics.h b/psycopg/diagnostics.h index 9187c50..95c1a61 100644 --- a/psycopg/diagnostics.h +++ b/psycopg/diagnostics.h @@ -1,6 +1,6 @@ /* diagnostics.c - definition for the psycopg Diagnostics type * - * Copyright (C) 2013 Matthew Woodcraft <matthew@woodcraft.me.uk> + * Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk> * * This file is part of psycopg. * diff --git a/psycopg/diagnostics_type.c b/psycopg/diagnostics_type.c index 13e545f..efde910 100644 --- a/psycopg/diagnostics_type.c +++ b/psycopg/diagnostics_type.c @@ -1,6 +1,6 @@ /* diagnostics.c - present information from libpq error responses * - * Copyright (C) 2013 Matthew Woodcraft <matthew@woodcraft.me.uk> + * Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk> * * This file is part of psycopg. * diff --git a/psycopg/error.h b/psycopg/error.h index a32042b..a8ba99d 100644 --- a/psycopg/error.h +++ b/psycopg/error.h @@ -1,6 +1,6 @@ /* error.h - definition for the psycopg base Error type * - * Copyright (C) 2013 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/error_type.c b/psycopg/error_type.c index ac40a0c..3edba7a 100644 --- a/psycopg/error_type.c +++ b/psycopg/error_type.c @@ -1,6 +1,6 @@ /* error_type.c - python interface to the Error objects * - * Copyright (C) 2013 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/green.c b/psycopg/green.c index ab37b8b..fec59d9 100644 --- a/psycopg/green.c +++ b/psycopg/green.c @@ -1,6 +1,6 @@ /* green.c - cooperation with coroutine libraries. * - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/green.h b/psycopg/green.h index 7d95f9c..352cf5f 100644 --- a/psycopg/green.h +++ b/psycopg/green.h @@ -1,6 +1,6 @@ /* green.c - cooperation with coroutine libraries. * - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/libpq_support.c b/psycopg/libpq_support.c index 6c0b5f8..851a72d 100644 --- a/psycopg/libpq_support.c +++ b/psycopg/libpq_support.c @@ -2,7 +2,7 @@ * required for advanced communication with the server, such as * streaming replication * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/libpq_support.h b/psycopg/libpq_support.h index 5ca1fba..824ff4b 100644 --- a/psycopg/libpq_support.h +++ b/psycopg/libpq_support.h @@ -1,6 +1,6 @@ /* libpq_support.h - definitions for libpq_support.c * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/lobject.h b/psycopg/lobject.h index 73cf619..dbda73e 100644 --- a/psycopg/lobject.h +++ b/psycopg/lobject.h @@ -1,6 +1,6 @@ /* lobject.h - definition for the psycopg lobject type * - * Copyright (C) 2006-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/lobject_int.c b/psycopg/lobject_int.c index b39a7b4..765f384 100644 --- a/psycopg/lobject_int.c +++ b/psycopg/lobject_int.c @@ -1,6 +1,6 @@ /* lobject_int.c - code used by the lobject object * - * Copyright (C) 2006-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/lobject_type.c b/psycopg/lobject_type.c index 7c27a7d..568e533 100644 --- a/psycopg/lobject_type.c +++ b/psycopg/lobject_type.c @@ -1,6 +1,6 @@ /* lobject_type.c - python interface to lobject objects * - * Copyright (C) 2006-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.c b/psycopg/microprotocols.c index 1139519..54ce23e 100644 --- a/psycopg/microprotocols.c +++ b/psycopg/microprotocols.c @@ -1,6 +1,6 @@ /* microprotocols.c - minimalist and non-validating protocols implementation * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/microprotocols.h b/psycopg/microprotocols.h index 1c2340f..42adf66 100644 --- a/psycopg/microprotocols.h +++ b/psycopg/microprotocols.h @@ -1,6 +1,6 @@ /* microprotocols.c - definitions for minimalist and non-validating protocols * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/microprotocols_proto.c b/psycopg/microprotocols_proto.c index dfbf8e3..80c22a8 100644 --- a/psycopg/microprotocols_proto.c +++ b/psycopg/microprotocols_proto.c @@ -1,6 +1,6 @@ /* microprotocol_proto.c - psycopg protocols * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/microprotocols_proto.h b/psycopg/microprotocols_proto.h index 55d2dd0..4f33fdb 100644 --- a/psycopg/microprotocols_proto.h +++ b/psycopg/microprotocols_proto.h @@ -1,6 +1,6 @@ /* microporotocols_proto.h - definition for psycopg's protocols * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/notify.h b/psycopg/notify.h index 2f4c20f..bff1a28 100644 --- a/psycopg/notify.h +++ b/psycopg/notify.h @@ -1,6 +1,6 @@ /* notify.h - definition for the psycopg Notify type * - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/notify_type.c b/psycopg/notify_type.c index 4677d57..a7c3a01 100644 --- a/psycopg/notify_type.c +++ b/psycopg/notify_type.c @@ -1,6 +1,6 @@ /* notify_type.c - python interface to Notify objects * - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/pqpath.c b/psycopg/pqpath.c index 864c395..5e56838 100644 --- a/psycopg/pqpath.c +++ b/psycopg/pqpath.c @@ -1,6 +1,6 @@ /* pqpath.c - single path into libpq * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/pqpath.h b/psycopg/pqpath.h index 5cf2230..81120a0 100644 --- a/psycopg/pqpath.h +++ b/psycopg/pqpath.h @@ -1,6 +1,6 @@ /* pqpath.h - definitions for pqpath.c * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/psycopg.h b/psycopg/psycopg.h index ca43737..7bd3810 100644 --- a/psycopg/psycopg.h +++ b/psycopg/psycopg.h @@ -1,6 +1,6 @@ /* psycopg.h - definitions for the psycopg python module * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/psycopgmodule.c b/psycopg/psycopgmodule.c index a8b0dc1..6b79442 100644 --- a/psycopg/psycopgmodule.c +++ b/psycopg/psycopgmodule.c @@ -1,6 +1,6 @@ /* psycopgmodule.c - psycopg module (will import other C classes) * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/python.h b/psycopg/python.h index 1276ecf..3922f88 100644 --- a/psycopg/python.h +++ b/psycopg/python.h @@ -1,6 +1,6 @@ /* python.h - python version compatibility stuff * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/replication_connection.h b/psycopg/replication_connection.h index e34dca2..1f7167b 100644 --- a/psycopg/replication_connection.h +++ b/psycopg/replication_connection.h @@ -1,6 +1,6 @@ /* replication_connection.h - definition for the psycopg replication connection type * - * Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/replication_connection_type.c b/psycopg/replication_connection_type.c index 774d650..686a6a2 100644 --- a/psycopg/replication_connection_type.c +++ b/psycopg/replication_connection_type.c @@ -1,6 +1,6 @@ /* replication_connection_type.c - python interface to replication connection objects * - * Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/replication_cursor.h b/psycopg/replication_cursor.h index 2d69bc8..6a8de2e 100644 --- a/psycopg/replication_cursor.h +++ b/psycopg/replication_cursor.h @@ -1,6 +1,6 @@ /* replication_cursor.h - definition for the psycopg replication cursor type * - * Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/replication_cursor_type.c b/psycopg/replication_cursor_type.c index 91e0cde..3f3481d 100644 --- a/psycopg/replication_cursor_type.c +++ b/psycopg/replication_cursor_type.c @@ -1,6 +1,6 @@ /* replication_cursor_type.c - python interface to replication cursor objects * - * Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/replication_message.h b/psycopg/replication_message.h index 9ba0da2..8af3955 100644 --- a/psycopg/replication_message.h +++ b/psycopg/replication_message.h @@ -1,6 +1,6 @@ /* replication_message.h - definition for the psycopg ReplicationMessage type * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/replication_message_type.c b/psycopg/replication_message_type.c index 6927cf6..d112c9d 100644 --- a/psycopg/replication_message_type.c +++ b/psycopg/replication_message_type.c @@ -1,6 +1,6 @@ /* replication_message_type.c - python interface to ReplcationMessage objects * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/solaris_support.h b/psycopg/solaris_support.h index 880e9f1..7b99a66 100644 --- a/psycopg/solaris_support.h +++ b/psycopg/solaris_support.h @@ -1,7 +1,7 @@ /* solaris_support.h - definitions for solaris_support.c * * Copyright (C) 2017 My Karlsson <mk@acc.umu.se> - * Copyright (c) 2018, Joyent, Inc. + * Copyright (c) 2018-2019, Joyent, Inc. * * This file is part of psycopg. * diff --git a/psycopg/typecast.c b/psycopg/typecast.c index f6ea928..b395add 100644 --- a/psycopg/typecast.c +++ b/psycopg/typecast.c @@ -1,6 +1,6 @@ /* typecast.c - basic utility functions related to typecasting * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast.h b/psycopg/typecast.h index 04976f3..cbc11ba 100644 --- a/psycopg/typecast.h +++ b/psycopg/typecast.h @@ -1,6 +1,6 @@ /* typecast.h - definitions for typecasters * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_array.c b/psycopg/typecast_array.c index 9cec95c..99cadb5 100644 --- a/psycopg/typecast_array.c +++ b/psycopg/typecast_array.c @@ -1,6 +1,6 @@ /* typecast_array.c - array typecasters * - * Copyright (C) 2005-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2005-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_basic.c b/psycopg/typecast_basic.c index 170ee45..319fea4 100644 --- a/psycopg/typecast_basic.c +++ b/psycopg/typecast_basic.c @@ -1,6 +1,6 @@ /* pgcasts_basic.c - basic typecasting functions to python types * - * Copyright (C) 2001-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_binary.c b/psycopg/typecast_binary.c index 8226d3f..c7d2e75 100644 --- a/psycopg/typecast_binary.c +++ b/psycopg/typecast_binary.c @@ -1,6 +1,6 @@ /* typecast_binary.c - binary typecasting functions to python types * - * Copyright (C) 2001-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_binary.h b/psycopg/typecast_binary.h index bc70992..30f5ad7 100644 --- a/psycopg/typecast_binary.h +++ b/psycopg/typecast_binary.h @@ -1,6 +1,6 @@ /* typecast_binary.h - definitions for binary typecaster * - * Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_datetime.c b/psycopg/typecast_datetime.c index e34117d..d780400 100644 --- a/psycopg/typecast_datetime.c +++ b/psycopg/typecast_datetime.c @@ -1,6 +1,6 @@ /* typecast_datetime.c - date and time typecasting functions to python types * - * Copyright (C) 2001-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/typecast_mxdatetime.c b/psycopg/typecast_mxdatetime.c index 637e438..ed0f99e 100644 --- a/psycopg/typecast_mxdatetime.c +++ b/psycopg/typecast_mxdatetime.c @@ -1,6 +1,6 @@ /* typecast_mxdatetime.c - date and time typecasting functions to mx types * - * Copyright (C) 2001-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/utils.c b/psycopg/utils.c index 81171bd..b843759 100644 --- a/psycopg/utils.c +++ b/psycopg/utils.c @@ -1,6 +1,6 @@ /* utils.c - miscellaneous utility functions * - * Copyright (C) 2008-2010 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2008-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/utils.h b/psycopg/utils.h index 3855cd8..bb9f0c3 100644 --- a/psycopg/utils.h +++ b/psycopg/utils.h @@ -1,6 +1,6 @@ /* utils.h - function definitions for utility file * - * Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/win32_support.c b/psycopg/win32_support.c index 7a9c8b8..45501b5 100644 --- a/psycopg/win32_support.c +++ b/psycopg/win32_support.c @@ -1,6 +1,6 @@ /* win32_support.c - emulate some functions missing on Win32 * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/win32_support.h b/psycopg/win32_support.h index b463141..57b308b 100644 --- a/psycopg/win32_support.h +++ b/psycopg/win32_support.h @@ -1,6 +1,6 @@ /* win32_support.h - definitions for win32_support.c * - * Copyright (C) 2003-2015 Federico Di Gregorio <fog@debian.org> + * Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> * * This file is part of psycopg. * diff --git a/psycopg/xid.h b/psycopg/xid.h index 6f641be..5c6fc07 100644 --- a/psycopg/xid.h +++ b/psycopg/xid.h @@ -1,7 +1,7 @@ /* xid.h - definition for the psycopg Xid type * - * Copyright (C) 2008 James Henstridge <james@jamesh.id.au> - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/psycopg/xid_type.c b/psycopg/xid_type.c index ab6c33e..bf940dc 100644 --- a/psycopg/xid_type.c +++ b/psycopg/xid_type.c @@ -1,7 +1,7 @@ /* xid_type.c - python interface to Xid objects * * Copyright (C) 2008 Canonical Ltd. - * Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> + * Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> * * This file is part of psycopg. * diff --git a/scripts/make_errorcodes.py b/scripts/make_errorcodes.py index 3c72a2c..0f8a371 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -4,7 +4,7 @@ The script can be run at a new PostgreSQL release to refresh the module. """ -# Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 8e5f4f3..91c0778 100755 --- a/scripts/make_errors.py +++ b/scripts/make_errors.py @@ -4,7 +4,7 @@ The script can be run at a new PostgreSQL release to refresh the module. """ -# Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 a5f62d0..66a7568 100755 --- a/scripts/refcounter.py +++ b/scripts/refcounter.py @@ -6,7 +6,7 @@ the object count differs between the last two runs, a report is printed and the script exits with error 1. """ -# Copyright (C) 2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published @@ -1,6 +1,6 @@ # setup.py - distutils packaging # -# Copyright (C) 2003-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org> # # 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 5c57849..cad2a9a 100755 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,7 +2,7 @@ # psycopg2 test suite # -# Copyright (C) 2007-2011 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org> # # 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 5e70337..894d810 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-2011 Jan Urbański <wulczer@wulczer.org> +# Copyright (C) 2010-2019 Jan Urbański <wulczer@wulczer.org> # # 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 86a4ad2..7a2e040 100755 --- a/tests/test_async_keyword.py +++ b/tests/test_async_keyword.py @@ -3,7 +3,7 @@ # test_async_keyword.py - test for objects using 'async' as attribute/param # -# Copyright (C) 2017 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2017-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 1ab3cfd..8ad025d 100755 --- a/tests/test_bugX000.py +++ b/tests/test_bugX000.py @@ -2,7 +2,7 @@ # bugX000.py - test for DateTime object allocation bug # -# Copyright (C) 2007-2011 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org> # # 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 c04756b..6bfd70a 100755 --- a/tests/test_bug_gc.py +++ b/tests/test_bug_gc.py @@ -2,7 +2,7 @@ # bug_gc.py - test for refcounting/GC bug # -# Copyright (C) 2010-2011 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2010-2019 Federico Di Gregorio <fog@debian.org> # # 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 d257f3d..cc17be7 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-2011 Jan Urbański <wulczer@wulczer.org> +# Copyright (C) 2010-2019 Jan Urbański <wulczer@wulczer.org> # # 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 24f2e22..e60b7dd 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -2,7 +2,7 @@ # test_connection.py - unit test for connection attributes # -# Copyright (C) 2008-2011 James Henstridge <james@jamesh.id.au> +# Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au> # # 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 11ab492..e800aed 100755 --- a/tests/test_copy.py +++ b/tests/test_copy.py @@ -2,7 +2,7 @@ # test_copy.py - unit test for COPY support # -# Copyright (C) 2010-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 82338d3..6b5b5f8 100755 --- a/tests/test_cursor.py +++ b/tests/test_cursor.py @@ -2,7 +2,7 @@ # test_cursor.py - unit test for cursor attributes # -# Copyright (C) 2010-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 4c2ba84..95f4090 100755 --- a/tests/test_dates.py +++ b/tests/test_dates.py @@ -2,7 +2,7 @@ # test_dates.py - unit test for dates handling # -# Copyright (C) 2008-2011 James Henstridge <james@jamesh.id.au> +# Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au> # # 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 34d214b..c510f72 100755 --- a/tests/test_errcodes.py +++ b/tests/test_errcodes.py @@ -2,7 +2,7 @@ # test_errcodes.py - unit test for psycopg2.errcodes module # -# Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 e8c61a8..4369960 100755 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -2,7 +2,7 @@ # test_errors.py - unit test for psycopg2.errors module # -# Copyright (C) 2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 92a25b6..c1aa9ae 100755 --- a/tests/test_extras_dictcursor.py +++ b/tests/test_extras_dictcursor.py @@ -2,7 +2,7 @@ # # extras_dictcursor - test if DictCursor extension class works # -# Copyright (C) 2004-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org> # # 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 661089a..a7a9a5f 100755 --- a/tests/test_fast_executemany.py +++ b/tests/test_fast_executemany.py @@ -2,7 +2,7 @@ # # test_fast_executemany.py - tests for fast executemany implementations # -# Copyright (C) 2017 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2017-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 491a720..0ef37ff 100755 --- a/tests/test_green.py +++ b/tests/test_green.py @@ -2,7 +2,7 @@ # test_green.py - unit test for async wait callback # -# Copyright (C) 2010-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 bd87ef3..ca7031a 100755 --- a/tests/test_ipaddress.py +++ b/tests/test_ipaddress.py @@ -2,7 +2,7 @@ # # test_ipaddress.py - tests for ipaddress support # -# Copyright (C) 2016 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 291a734..e91a2d0 100755 --- a/tests/test_lobject.py +++ b/tests/test_lobject.py @@ -2,7 +2,7 @@ # test_lobject.py - unit test for large objects support # -# Copyright (C) 2008-2011 James Henstridge <james@jamesh.id.au> +# Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au> # # 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 b5cbb7b..41d8d6d 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -2,7 +2,7 @@ # test_module.py - unit test for the module interface # -# Copyright (C) 2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 b0196e7..127eb06 100755 --- a/tests/test_notify.py +++ b/tests/test_notify.py @@ -2,7 +2,7 @@ # test_notify.py - unit test for async notifications # -# Copyright (C) 2010-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 183c40f..46f3ceb 100755 --- a/tests/test_psycopg2_dbapi20.py +++ b/tests/test_psycopg2_dbapi20.py @@ -2,7 +2,7 @@ # test_psycopg2_dbapi20.py - DB API conformance test for psycopg2 # -# Copyright (C) 2006-2011 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org> # # 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 b4679cd..4a8db04 100755 --- a/tests/test_quote.py +++ b/tests/test_quote.py @@ -2,7 +2,7 @@ # test_quote.py - unit test for strings quoting # -# Copyright (C) 2007-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2007-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 f686d2b..18175b3 100755 --- a/tests/test_replication.py +++ b/tests/test_replication.py @@ -2,7 +2,7 @@ # test_replication.py - unit test for replication protocol # -# Copyright (C) 2015 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 6d684a9..cc7f6cd 100755 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -2,7 +2,7 @@ # test_sql.py - tests for the psycopg2.sql module # -# Copyright (C) 2016 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 b3648fe..b48633f 100755 --- a/tests/test_transaction.py +++ b/tests/test_transaction.py @@ -2,7 +2,7 @@ # test_transaction - unit test on transaction behaviour # -# Copyright (C) 2007-2011 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org> # # 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 b5660b6..9f1fd6d 100755 --- a/tests/test_types_basic.py +++ b/tests/test_types_basic.py @@ -2,7 +2,7 @@ # # types_basic.py - tests for basic types conversions # -# Copyright (C) 2004-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org> # # 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 81b74df..2b99678 100755 --- a/tests/test_types_extras.py +++ b/tests/test_types_extras.py @@ -2,7 +2,7 @@ # # types_extras.py - tests for extras types conversions # -# Copyright (C) 2008-2010 Federico Di Gregorio <fog@debian.org> +# Copyright (C) 2008-2019 Federico Di Gregorio <fog@debian.org> # # 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 ced425d..df95b92 100755 --- a/tests/test_with.py +++ b/tests/test_with.py @@ -2,7 +2,7 @@ # test_ctxman.py - unit test for connection and cursor used as context manager # -# Copyright (C) 2012 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2012-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # 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 227c044..24e52f1 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -1,7 +1,7 @@ # testutils.py - utility module for psycopg2 testing. # -# Copyright (C) 2010-2011 Daniele Varrazzo <daniele.varrazzo@gmail.com> +# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com> # # psycopg2 is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published |