Copyright year updated to 2021

ag -l Copyright | xargs sed -i \
    "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*Psycopg Team.*\)/\1-$(date +%Y)\3/I"
This commit is contained in:
Daniele Varrazzo 2021-06-15 00:37:22 +01:00
parent af05c3a1ec
commit 1d3a89a0bb
118 changed files with 118 additions and 118 deletions

View File

@ -49,7 +49,7 @@ master_doc = 'index'
# General information about the project.
project = 'Psycopg'
copyright = (
'2001-2020, Federico Di Gregorio, Daniele Varrazzo, The Psycopg Team'
'2001-2021, Federico Di Gregorio, Daniele Varrazzo, The Psycopg Team'
)
# The version info for the project you're documenting, acts as replacement for

View File

@ -19,7 +19,7 @@ Homepage: https://psycopg.org/
# psycopg/__init__.py - initialization of the psycopg module
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -4,7 +4,7 @@
# psycopg/_ipaddress.py - Ipaddres-based network types adaptation
#
# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -8,7 +8,7 @@ extensions importing register_json from extras.
# psycopg/_json.py - Implementation of the JSON adaptation objects
#
# Copyright (C) 2012-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -5,7 +5,7 @@
# psycopg/_range.py - Implementation of the Range type and adaptation
#
# Copyright (C) 2012-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -5,7 +5,7 @@ This module contains symbolic names for all PostgreSQL error codes.
# psycopg2/errorcodes.py - PostgreSQL error codes
#
# Copyright (C) 2006-2019 Johan Dahlin <jdahlin@async.com.br>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -4,7 +4,7 @@
# psycopg/errors.py - SQLSTATE and DB-API exceptions
#
# Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -13,7 +13,7 @@ This module holds all the extensions to the DBAPI-2.0 provided by psycopg.
# psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -6,7 +6,7 @@ and classes until a better place in the distribution is found.
# psycopg/extras.py - miscellaneous extra goodies for psycopg
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -5,7 +5,7 @@ This module implements thread-safe (and not) connection pools.
# psycopg/pool.py - pooling code for psycopg
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -4,7 +4,7 @@
# psycopg/sql.py - SQL composition utility module
#
# Copyright (C) 2016-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -7,7 +7,7 @@ functions or used to set the .tzinfo_factory attribute in cursors.
# psycopg/tz.py - tzinfo implementation
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -1,7 +1,7 @@
/* adapter_asis.c - adapt types as they are
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_asis.h - definition for the psycopg AsIs type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_binary.c - Binary objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_binary.h - definition for the Binary type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_datetime.c - python date/time objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_datetime.h - definition for the python date/time types
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_list.c - python list objects
*
* Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_list.h - definition for the python list types
*
* Copyright (C) 2004-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pboolean.c - psycopg boolean type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pboolean.h - definition for the psycopg boolean type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pdecimal.c - psycopg Decimal type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pdecimal.h - definition for the psycopg Decimal type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_float.c - psycopg pfloat type wrapper implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pfloat.h - definition for the psycopg float type wrapper
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_int.c - psycopg pint type wrapper implementation
*
* Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_pint.h - definition for the psycopg int type wrapper
*
* Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_qstring.c - QuotedString objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* adapter_qstring.h - definition for the QuotedString type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018, Joyent, Inc.
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018-2019, Joyent, Inc.
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* bytes_format.c - bytes-oriented version of PyString_Format
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* column.h - definition for a column in cursor.description type
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* column_type.c - python interface to cursor.description objects
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* config.h - general config and Dprintf macro
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* connection.h - definition for the psycopg connection type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* connection_int.c - code used by the connection object
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* connection_type.c - python interface to connection objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* connection.h - definition for the psycopg ConnectionInfo type
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* conninfo_type.c - present information about the libpq connection
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* cursor.h - definition for the psycopg cursor type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* cursor_int.c - code used by the cursor object
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* cursor_type.c - python interface to cursor objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* diagnostics.c - definition for the psycopg Diagnostics type
*
* Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* diagnostics.c - present information from libpq error responses
*
* Copyright (C) 2013-2019 Matthew Woodcraft <matthew@woodcraft.me.uk>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* error.h - definition for the psycopg base Error type
*
* Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* error_type.c - python interface to the Error objects
*
* Copyright (C) 2013-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* green.c - cooperation with coroutine libraries.
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* green.c - cooperation with coroutine libraries.
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -3,7 +3,7 @@
* streaming replication
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* libpq_support.h - definitions for libpq_support.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* lobject.h - definition for the psycopg lobject type
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* lobject_int.c - code used by the lobject object
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* lobject_type.c - python interface to lobject objects
*
* Copyright (C) 2006-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* microprotocols.c - minimalist and non-validating protocols implementation
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* microprotocols.c - definitions for minimalist and non-validating protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* microprotocol_proto.c - psycopg protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* microporotocols_proto.h - definition for psycopg's protocols
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* notify.h - definition for the psycopg Notify type
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* notify_type.c - python interface to Notify objects
*
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* pqpath.c - single path into libpq
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* pqpath.h - definitions for pqpath.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* psycopg.h - definitions for the psycopg python module
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* psycopgmodule.c - psycopg module (will import other C classes)
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* python.h - python version compatibility stuff
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_connection.h - definition for the psycopg replication connection type
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_connection_type.c - python interface to replication connection objects
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_cursor.h - definition for the psycopg replication cursor type
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_cursor_type.c - python interface to replication cursor objects
*
* Copyright (C) 2015-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_message.h - definition for the psycopg ReplicationMessage type
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* replication_message_type.c - python interface to ReplcationMessage objects
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018, Joyent, Inc.
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2017 My Karlsson <mk@acc.umu.se>
* Copyright (c) 2018-2019, Joyent, Inc.
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast.c - basic utility functions related to typecasting
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast.h - definitions for typecasters
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast_array.c - array typecasters
*
* Copyright (C) 2005-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* pgcasts_basic.c - basic typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast_binary.c - binary typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast_binary.h - definitions for binary typecaster
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* typecast_datetime.c - date and time typecasting functions to python types
*
* Copyright (C) 2001-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* utils.c - miscellaneous utility functions
*
* Copyright (C) 2008-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* utils.h - function definitions for utility file
*
* Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* win32_support.c - emulate some functions missing on Win32
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -1,7 +1,7 @@
/* win32_support.h - definitions for win32_support.c
*
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au>
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -2,7 +2,7 @@
*
* Copyright (C) 2008 Canonical Ltd.
* Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Copyright (C) 2020 The Psycopg Team
* Copyright (C) 2020-2021 The Psycopg Team
*
* This file is part of psycopg.
*

View File

@ -5,7 +5,7 @@ The script can be run at a new PostgreSQL release to refresh the module.
"""
# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -5,7 +5,7 @@ The script can be run at a new PostgreSQL release to refresh the module.
"""
# Copyright (C) 2018-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -7,7 +7,7 @@ script exits with error 1.
"""
# Copyright (C) 2011-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -1,7 +1,7 @@
# setup.py - distutils packaging
#
# Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# psycopg2 test suite
#
# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_async.py - unit test for asynchronous API
#
# Copyright (C) 2010-2019 Jan Urbański <wulczer@wulczer.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# bugX000.py - test for DateTime object allocation bug
#
# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# bug_gc.py - test for refcounting/GC bug
#
# Copyright (C) 2010-2019 Federico Di Gregorio <fog@debian.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_cancel.py - unit test for query cancellation
#
# Copyright (C) 2010-2019 Jan Urbański <wulczer@wulczer.org>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_connection.py - unit test for connection attributes
#
# Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_copy.py - unit test for COPY support
#
# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_cursor.py - unit test for cursor attributes
#
# Copyright (C) 2010-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

View File

@ -3,7 +3,7 @@
# test_dates.py - unit test for dates handling
#
# Copyright (C) 2008-2019 James Henstridge <james@jamesh.id.au>
# Copyright (C) 2020 The Psycopg Team
# Copyright (C) 2020-2021 The Psycopg Team
#
# psycopg2 is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published

Some files were not shown because too many files have changed in this diff Show More