[Python-modules-commits] [sqlalchemy] branch master updated	(5ffe5e7 -> c20e465)
    Piotr Ożarowski 
    piotr at moszumanska.debian.org
       
    Wed Oct 19 17:20:53 UTC 2016
    
    
  
This is an automated email from the git hooks/post-receive script.
piotr pushed a change to branch master
in repository sqlalchemy.
      from  5ffe5e7   update changelog
       new  c94b9fa   record new upstream branch created by importing sqlalchemy_1.1.2+ds1.orig.tar.gz
       new  c7782a7   Import sqlalchemy_1.1.2+ds1.orig.tar.gz
       new  49df509   disable_intersphinx module
       new  c20e465   merge patched into master
The 4 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:
 PKG-INFO                                           |   2 +-
 README.unittests.rst                               |   6 +-
 debian/.git-dpm                                    |  14 +-
 .../patches/0001-disable_intersphinx-module.patch  |   4 +-
 doc/build/changelog/changelog_03.rst               |   6 +-
 doc/build/changelog/changelog_05.rst               |   4 +-
 doc/build/changelog/changelog_06.rst               |  20 +--
 doc/build/changelog/changelog_07.rst               |  22 +--
 doc/build/changelog/changelog_08.rst               |  42 ++---
 doc/build/changelog/changelog_09.rst               |  36 ++---
 doc/build/changelog/changelog_10.rst               |  46 +++---
 doc/build/changelog/changelog_11.rst               |  63 +++++++-
 doc/build/changelog/migration_06.rst               |  22 +--
 doc/build/changelog/migration_07.rst               |  12 +-
 doc/build/changelog/migration_08.rst               |  16 +-
 doc/build/changelog/migration_09.rst               |  20 +--
 doc/build/changelog/migration_10.rst               |  32 ++--
 doc/build/changelog/migration_11.rst               |   2 +-
 doc/build/conf.py                                  |   4 +-
 doc/build/core/constraints.rst                     |   6 +-
 doc/build/core/custom_types.rst                    |  12 +-
 doc/build/core/ddl.rst                             |   4 +-
 doc/build/core/defaults.rst                        |  10 +-
 doc/build/core/engines.rst                         |   6 +-
 doc/build/core/reflection.rst                      |   2 +-
 doc/build/core/sqlelement.rst                      |  15 +-
 doc/build/core/tutorial.rst                        |   8 +-
 doc/build/core/type_basics.rst                     |   2 +-
 doc/build/dialects/index.rst                       |   4 +-
 doc/build/faq/connections.rst                      |   2 +-
 doc/build/glossary.rst                             |   6 +-
 doc/build/orm/join_conditions.rst                  |   4 +-
 doc/build/orm/session_transaction.rst              |   2 +-
 doc/build/orm/tutorial.rst                         |   6 +-
 doc/build/orm/versioning.rst                       |  10 +-
 examples/postgis/postgis.py                        |   4 +-
 lib/sqlalchemy/__init__.py                         |   2 +-
 lib/sqlalchemy/dialects/postgresql/array.py        |   6 +-
 lib/sqlalchemy/dialects/postgresql/base.py         |  90 +++++------
 lib/sqlalchemy/dialects/postgresql/dml.py          |   2 +-
 lib/sqlalchemy/dialects/postgresql/ext.py          |   4 +-
 lib/sqlalchemy/dialects/postgresql/hstore.py       |  10 +-
 lib/sqlalchemy/dialects/postgresql/json.py         |   8 +-
 lib/sqlalchemy/dialects/postgresql/psycopg2.py     |  16 +-
 lib/sqlalchemy/dialects/postgresql/ranges.py       |  14 +-
 .../dialects/type_migration_guidelines.txt         |   4 +-
 lib/sqlalchemy/engine/__init__.py                  |   4 +-
 lib/sqlalchemy/engine/base.py                      |   6 +-
 lib/sqlalchemy/engine/default.py                   |   2 +-
 lib/sqlalchemy/engine/interfaces.py                |   6 +-
 lib/sqlalchemy/engine/reflection.py                |   2 +-
 lib/sqlalchemy/engine/result.py                    |   4 +-
 lib/sqlalchemy/ext/baked.py                        |  16 +-
 lib/sqlalchemy/ext/compiler.py                     |   2 +-
 lib/sqlalchemy/ext/declarative/api.py              |   3 -
 lib/sqlalchemy/ext/indexable.py                    |  10 +-
 lib/sqlalchemy/orm/loading.py                      |  42 +++--
 lib/sqlalchemy/orm/query.py                        |   8 +-
 lib/sqlalchemy/orm/strategies.py                   |   5 +-
 lib/sqlalchemy/orm/strategy_options.py             |   8 +
 lib/sqlalchemy/pool.py                             |   2 +-
 lib/sqlalchemy/sql/crud.py                         |   6 +-
 lib/sqlalchemy/sql/ddl.py                          |   8 +-
 lib/sqlalchemy/sql/dml.py                          |   4 +-
 lib/sqlalchemy/sql/elements.py                     |   8 +-
 lib/sqlalchemy/sql/functions.py                    |   2 +-
 lib/sqlalchemy/sql/operators.py                    |   4 +-
 lib/sqlalchemy/sql/schema.py                       |  18 ++-
 lib/sqlalchemy/sql/selectable.py                   |  26 ++--
 lib/sqlalchemy/sql/sqltypes.py                     |  25 +--
 lib/sqlalchemy/sql/type_api.py                     |   4 +-
 lib/sqlalchemy/testing/requirements.py             |   4 +-
 lib/sqlalchemy/testing/suite/test_results.py       |   2 +-
 lib/sqlalchemy/util/langhelpers.py                 |   3 +-
 test/base/test_utils.py                            |  13 ++
 test/dialect/postgresql/test_compiler.py           |  22 +++
 test/dialect/postgresql/test_on_conflict.py        |  34 +++++
 test/dialect/postgresql/test_types.py              |   4 +-
 test/engine/test_pool.py                           |   2 +-
 test/ext/test_baked.py                             |  72 ++++++++-
 test/orm/test_deferred.py                          |  48 ++++++
 test/orm/test_eager_relations.py                   |  39 ++++-
 test/orm/test_expire.py                            |  41 +++++
 test/orm/test_lazy_relations.py                    |   2 +-
 test/orm/test_merge.py                             |   2 +-
 test/orm/test_subquery_relations.py                |   2 +-
 test/requirements.py                               |   2 +-
 test/sql/test_generative.py                        |   4 +-
 test/sql/test_insert.py                            | 170 ++++++++++-----------
 test/sql/test_inspect.py                           |   2 +-
 test/sql/test_metadata.py                          |  47 +++++-
 test/sql/test_resultset.py                         |   2 +-
 test/sql/test_returning.py                         |   2 +-
 test/sql/test_update.py                            |   2 +-
 94 files changed, 890 insertions(+), 488 deletions(-)
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/sqlalchemy.git
    
    
More information about the Python-modules-commits
mailing list