[Python-modules-commits] [psycopg2] branch upstream updated (894d88c -> d8e7248)
Scott Kitterman
kitterman at moszumanska.debian.org
Mon Jun 12 12:20:04 UTC 2017
This is an automated email from the git hooks/post-receive script.
kitterman pushed a change to branch upstream
in repository psycopg2.
from 894d88c Import psycopg2_2.6.2.orig.tar.gz
new d8e7248 Imported Upstream version 2.7.1
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
NEWS | 83 ++-
PKG-INFO | 32 +-
README.rst | 25 +-
doc/src/_static/psycopg.css | 9 +-
doc/src/advanced.rst | 93 ++-
doc/src/conf.py | 6 +-
doc/src/connection.rst | 145 ++++-
doc/src/cursor.rst | 46 +-
doc/src/extensions.rst | 143 +++-
doc/src/extras.rst | 455 ++++++++++++-
doc/src/faq.rst | 22 +-
doc/src/index.rst | 5 +-
doc/src/install.rst | 252 ++++----
doc/src/module.rst | 43 +-
doc/src/sql.rst | 89 +++
doc/src/usage.rst | 21 +-
lib/__init__.py | 88 +--
lib/_ipaddress.py | 89 +++
lib/_json.py | 14 +-
lib/_range.py | 64 +-
lib/errorcodes.py | 1 +
lib/extensions.py | 148 +++--
lib/extras.py | 404 ++++++++++--
lib/pool.py | 38 +-
lib/psycopg1.py | 19 +-
lib/sql.py | 424 ++++++++++++
lib/tz.py | 12 +-
psycopg/adapter_binary.c | 2 -
psycopg/adapter_qstring.c | 43 +-
psycopg/config.h | 11 +
psycopg/connection.h | 35 +-
psycopg/connection_int.c | 692 +++++++++++---------
psycopg/connection_type.c | 389 ++++++++---
psycopg/cursor.h | 1 +
psycopg/cursor_type.c | 249 +++++--
psycopg/diagnostics_type.c | 2 +-
psycopg/error.h | 2 +-
psycopg/error_type.c | 15 +-
psycopg/libpq_support.c | 104 +++
psycopg/{adapter_pboolean.h => libpq_support.h} | 37 +-
psycopg/lobject_int.c | 10 +-
psycopg/lobject_type.c | 13 +-
psycopg/microprotocols.c | 24 +-
psycopg/pqpath.c | 388 ++++++++++-
psycopg/pqpath.h | 9 +
psycopg/psycopg.h | 13 +-
psycopg/psycopgmodule.c | 140 +++-
psycopg/python.h | 4 +-
.../{adapter_pint.h => replication_connection.h} | 30 +-
psycopg/replication_connection_type.c | 221 +++++++
psycopg/{adapter_list.h => replication_cursor.h} | 35 +-
psycopg/replication_cursor_type.c | 315 +++++++++
.../{adapter_qstring.h => replication_message.h} | 32 +-
psycopg/replication_message_type.c | 191 ++++++
psycopg/typecast.c | 15 +-
psycopg/typecast_basic.c | 6 +-
psycopg/typecast_builtins.c | 6 +
psycopg/typecast_datetime.c | 81 ++-
psycopg/utils.c | 141 +++-
psycopg/win32_support.c | 89 +++
psycopg/{adapter_asis.h => win32_support.h} | 35 +-
psycopg2.egg-info/PKG-INFO | 32 +-
psycopg2.egg-info/SOURCES.txt | 22 +-
scripts/buildtypes.py | 17 +-
scripts/fix_b.py | 20 -
scripts/make_errorcodes.py | 23 +-
scripts/refcounter.py | 7 +-
scripts/travis_prepare.sh | 131 ++++
scripts/travis_test.sh | 72 +++
scripts/upload-release.sh | 54 --
setup.cfg | 4 +
setup.py | 110 ++--
tests/__init__.py | 27 +-
tests/test_async.py | 62 +-
tests/test_async_keyword.py | 221 +++++++
tests/test_bugX000.py | 14 +-
tests/test_bug_gc.py | 3 +
tests/test_cancel.py | 14 +-
tests/test_connection.py | 716 ++++++++++++++++-----
tests/test_copy.py | 48 +-
tests/test_cursor.py | 136 ++--
tests/test_dates.py | 138 +++-
tests/test_errcodes.py | 10 +-
tests/test_extras_dictcursor.py | 15 +-
tests/test_fast_executemany.py | 242 +++++++
tests/test_green.py | 7 +-
tests/test_ipaddress.py | 136 ++++
tests/test_lobject.py | 61 +-
tests/test_module.py | 76 ++-
tests/test_notify.py | 42 +-
tests/test_psycopg2_dbapi20.py | 25 +
tests/test_quote.py | 51 +-
tests/test_replication.py | 232 +++++++
tests/test_sql.py | 376 +++++++++++
tests/test_transaction.py | 11 +-
tests/test_types_basic.py | 139 ++--
tests/test_types_extras.py | 223 ++++---
tests/test_with.py | 10 +-
tests/testconfig.py | 10 +-
tests/testutils.py | 149 ++++-
100 files changed, 7933 insertions(+), 1903 deletions(-)
create mode 100644 doc/src/sql.rst
create mode 100644 lib/_ipaddress.py
create mode 100644 lib/sql.py
create mode 100644 psycopg/libpq_support.c
copy psycopg/{adapter_pboolean.h => libpq_support.h} (51%)
copy psycopg/{adapter_pint.h => replication_connection.h} (56%)
create mode 100644 psycopg/replication_connection_type.c
copy psycopg/{adapter_list.h => replication_cursor.h} (51%)
create mode 100644 psycopg/replication_cursor_type.c
copy psycopg/{adapter_qstring.h => replication_message.h} (60%)
create mode 100644 psycopg/replication_message_type.c
create mode 100644 psycopg/win32_support.c
copy psycopg/{adapter_asis.h => win32_support.h} (60%)
delete mode 100644 scripts/fix_b.py
create mode 100755 scripts/travis_prepare.sh
create mode 100755 scripts/travis_test.sh
delete mode 100755 scripts/upload-release.sh
create mode 100755 tests/test_async_keyword.py
create mode 100755 tests/test_fast_executemany.py
create mode 100755 tests/test_ipaddress.py
create mode 100755 tests/test_replication.py
create mode 100755 tests/test_sql.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/psycopg2.git
More information about the Python-modules-commits
mailing list