[Python-modules-commits] [pyodbc] branch master updated (dd90ba8 -> 8fb43a7)

Laurent Bigonville bigon at moszumanska.debian.org
Tue Mar 14 14:09:24 UTC 2017


This is an automated email from the git hooks/post-receive script.

bigon pushed a change to branch master
in repository pyodbc.

      from  dd90ba8   Fix the python3 -dbg package
       new  20ef3e7   New upstream version 4.0.14
       new  1358a24   Merge tag 'upstream/4.0.14'
       new  9620e1a   New upstream release
       new  995defd   debian/control: Fix duplicate long description
       new  8fb43a7   Release to experimental

The 5 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:
 MANIFEST.in                 |    5 +-
 PKG-INFO                    |    5 +-
 README.md                   |   20 +
 debian/changelog            |    8 +
 debian/control              |    2 +-
 pyodbc.egg-info/PKG-INFO    |    5 +-
 pyodbc.egg-info/SOURCES.txt |   50 +-
 setup.cfg                   |    6 +
 setup.py                    |   87 +--
 src/cnxninfo.cpp            |  108 ++-
 src/cnxninfo.h              |    2 +-
 src/connection.cpp          |  608 ++++++++++++++---
 src/connection.h            |   46 +-
 src/cursor.cpp              |  342 +++++-----
 src/cursor.h                |   15 +-
 src/dbspecific.h            |   27 +-
 src/getdata.cpp             |  845 ++++++++++++-----------
 src/getdata.h               |    2 +
 src/params.cpp              |  397 ++++++-----
 src/pyodbc.h                |   22 +-
 src/pyodbccompat.cpp        |   20 +-
 src/pyodbccompat.h          |   27 +-
 src/pyodbcdbg.cpp           |   80 +++
 src/pyodbcmodule.cpp        |  265 ++++++--
 src/pyodbcmodule.h          |    8 +
 src/row.cpp                 |   13 +-
 src/row.h                   |    2 +
 src/sqlwchar.cpp            |  220 ------
 src/sqlwchar.h              |  102 +--
 src/textenc.cpp             |  157 +++++
 src/textenc.h               |   69 ++
 src/wrapper.h               |   29 +-
 tests2/accesstests.py       |  657 ++++++++++++++++++
 tests2/dbapi20.py           |  850 +++++++++++++++++++++++
 tests2/dbapitests.py        |   43 ++
 tests2/empty.accdb          |  Bin 0 -> 311296 bytes
 tests2/empty.mdb            |  Bin 0 -> 188416 bytes
 tests2/exceltests.py        |  140 ++++
 tests2/freetdstests.py      | 1274 ++++++++++++++++++++++++++++++++++
 tests2/informixtests.py     | 1273 ++++++++++++++++++++++++++++++++++
 tests2/mysqltests.py        |  725 ++++++++++++++++++++
 tests2/pgtests.py           |  537 +++++++++++++++
 tests2/pgtests.pyc          |  Bin 0 -> 20699 bytes
 tests2/sqlite.db            |  Bin 0 -> 2048 bytes
 tests2/sqlitetests.py       |  757 +++++++++++++++++++++
 tests2/sqlservertests.py    | 1574 +++++++++++++++++++++++++++++++++++++++++++
 tests2/test.py              |   41 ++
 tests2/test.xls             |  Bin 0 -> 17920 bytes
 tests2/testbase.py          |   25 +
 tests2/testutils.py         |  113 ++++
 tests2/testutils.pyc        |  Bin 0 -> 4531 bytes
 tests3/accesstests.py       |  626 +++++++++++++++++
 tests3/dbapi20.py           |  850 +++++++++++++++++++++++
 tests3/dbapitests.py        |   43 ++
 tests3/exceltests.py        |  140 ++++
 tests3/informixtests.py     | 1262 ++++++++++++++++++++++++++++++++++
 tests3/mysqltests.py        |  732 ++++++++++++++++++++
 tests3/pgtests.py           |  529 +++++++++++++++
 tests3/sqlitetests.py       |  708 +++++++++++++++++++
 tests3/sqlservertests.py    | 1399 ++++++++++++++++++++++++++++++++++++++
 tests3/test.py              |   17 +
 tests3/testbase.py          |   25 +
 tests3/testutils.py         |  106 +++
 tests3/testutils.pyc        |  Bin 0 -> 3968 bytes
 64 files changed, 16671 insertions(+), 1369 deletions(-)
 create mode 100644 README.md
 delete mode 100644 src/sqlwchar.cpp
 create mode 100644 src/textenc.cpp
 create mode 100644 src/textenc.h
 create mode 100755 tests2/accesstests.py
 create mode 100755 tests2/dbapi20.py
 create mode 100755 tests2/dbapitests.py
 create mode 100644 tests2/empty.accdb
 create mode 100644 tests2/empty.mdb
 create mode 100755 tests2/exceltests.py
 create mode 100755 tests2/freetdstests.py
 create mode 100755 tests2/informixtests.py
 create mode 100755 tests2/mysqltests.py
 create mode 100755 tests2/pgtests.py
 create mode 100644 tests2/pgtests.pyc
 create mode 100644 tests2/sqlite.db
 create mode 100755 tests2/sqlitetests.py
 create mode 100755 tests2/sqlservertests.py
 create mode 100755 tests2/test.py
 create mode 100644 tests2/test.xls
 create mode 100755 tests2/testbase.py
 create mode 100755 tests2/testutils.py
 create mode 100644 tests2/testutils.pyc
 create mode 100644 tests3/accesstests.py
 create mode 100644 tests3/dbapi20.py
 create mode 100644 tests3/dbapitests.py
 create mode 100644 tests3/exceltests.py
 create mode 100644 tests3/informixtests.py
 create mode 100755 tests3/mysqltests.py
 create mode 100755 tests3/pgtests.py
 create mode 100644 tests3/sqlitetests.py
 create mode 100644 tests3/sqlservertests.py
 create mode 100644 tests3/test.py
 create mode 100644 tests3/testbase.py
 create mode 100644 tests3/testutils.py
 create mode 100644 tests3/testutils.pyc

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pyodbc.git



More information about the Python-modules-commits mailing list