Copyright year updated

ag -l Copyright | xargs sed -i \
        "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
This commit is contained in:
Daniele Varrazzo 2019-02-17 01:34:52 +00:00
parent d177fa9bd0
commit 599432552a
118 changed files with 120 additions and 120 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

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