[Python-modules-commits] [sqlalchemy] branch master updated (6438a73 -> 42fd922)

Piotr Ożarowski piotr at moszumanska.debian.org
Fri Dec 25 18:39:38 UTC 2015


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

piotr pushed a change to branch master
in repository sqlalchemy.

      from  6438a73   record new upstream branch created by importing sqlalchemy_1.0.9+ds1.orig.tar.gz and merge it
       new  8d4516c   New upstream release
       new  02b25c3   Import sqlalchemy_1.0.11+ds1.orig.tar.gz
       new  fc7b26d   record new upstream branch created by importing sqlalchemy_1.0.11+ds1.orig.tar.gz and merge it
       new  42fd922   New upstream release

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 +-
 debian/.git-dpm                                   |  14 +-
 debian/changelog                                  |  12 +
 doc/build/changelog/changelog_09.rst              |   2 +-
 doc/build/changelog/changelog_10.rst              | 307 +++++++++++++++
 doc/build/changelog/migration_10.rst              |   2 +-
 doc/build/conf.py                                 |   4 +-
 doc/build/core/defaults.rst                       |  22 +-
 doc/build/core/event.rst                          |   6 +-
 doc/build/core/metadata.rst                       |   5 -
 doc/build/core/pooling.rst                        |  97 +++--
 doc/build/core/tutorial.rst                       | 245 +++++++-----
 doc/build/dialects/index.rst                      |   2 +-
 doc/build/faq/sessions.rst                        |   2 +-
 doc/build/orm/basic_relationships.rst             |  96 ++++-
 doc/build/orm/extensions/baked.rst                |   8 +
 doc/build/orm/loading_relationships.rst           |  44 +++
 doc/build/orm/mapped_sql_expr.rst                 |   2 +-
 doc/build/orm/session_events.rst                  |   5 +-
 doc/build/orm/tutorial.rst                        | 274 ++++++-------
 doc/build/testdocs.py                             |  69 ----
 lib/sqlalchemy/__init__.py                        |   2 +-
 lib/sqlalchemy/dialects/mssql/base.py             |  18 +-
 lib/sqlalchemy/dialects/mssql/pymssql.py          |   3 +-
 lib/sqlalchemy/dialects/mysql/base.py             |  14 +-
 lib/sqlalchemy/dialects/postgresql/base.py        |  12 +-
 lib/sqlalchemy/dialects/postgresql/constraints.py |   2 +-
 lib/sqlalchemy/engine/result.py                   |   2 +-
 lib/sqlalchemy/events.py                          |   5 +
 lib/sqlalchemy/ext/associationproxy.py            |   4 +-
 lib/sqlalchemy/ext/automap.py                     |   2 +-
 lib/sqlalchemy/ext/baked.py                       |   9 +-
 lib/sqlalchemy/ext/declarative/clsregistry.py     |   3 +-
 lib/sqlalchemy/ext/mutable.py                     |  10 +
 lib/sqlalchemy/orm/__init__.py                    |   5 +
 lib/sqlalchemy/orm/collections.py                 |   3 +-
 lib/sqlalchemy/orm/dependency.py                  |   8 +-
 lib/sqlalchemy/orm/events.py                      |   7 +-
 lib/sqlalchemy/orm/mapper.py                      |  14 +-
 lib/sqlalchemy/orm/persistence.py                 |  63 ++-
 lib/sqlalchemy/orm/query.py                       | 181 ++++++++-
 lib/sqlalchemy/orm/relationships.py               |  26 +-
 lib/sqlalchemy/orm/session.py                     |  18 +-
 lib/sqlalchemy/orm/strategies.py                  |  16 +-
 lib/sqlalchemy/orm/util.py                        |   6 +-
 lib/sqlalchemy/sql/compiler.py                    |   6 +-
 lib/sqlalchemy/sql/crud.py                        |  19 +-
 lib/sqlalchemy/sql/dml.py                         | 164 +++++---
 lib/sqlalchemy/sql/schema.py                      |  12 +-
 lib/sqlalchemy/sql/type_api.py                    |  20 +
 lib/sqlalchemy/sql/util.py                        |   1 -
 lib/sqlalchemy/testing/assertions.py              |   2 +-
 lib/sqlalchemy/testing/assertsql.py               |  17 +-
 lib/sqlalchemy/testing/exclusions.py              |   7 +-
 lib/sqlalchemy/testing/fixtures.py                |  10 +
 lib/sqlalchemy/util/__init__.py                   |   2 +-
 lib/sqlalchemy/util/compat.py                     |   1 +
 lib/sqlalchemy/util/langhelpers.py                |   8 +-
 test/base/test_tutorials.py                       | 144 +++++++
 test/base/test_utils.py                           |   5 +-
 test/dialect/mssql/test_types.py                  | 122 +++++-
 test/dialect/mysql/test_reflection.py             | 325 +++++++++++-----
 test/dialect/postgresql/test_compiler.py          |  29 ++
 test/dialect/postgresql/test_types.py             |  18 +
 test/ext/declarative/test_basic.py                |  23 ++
 test/ext/test_baked.py                            |  92 ++++-
 test/ext/test_mutable.py                          |  49 ++-
 test/orm/inheritance/test_relationship.py         | 272 ++++++++++++-
 test/orm/test_cycles.py                           |  49 ++-
 test/orm/test_eager_relations.py                  | 113 +++++-
 test/orm/test_query.py                            |  33 ++
 test/orm/test_session.py                          |   3 +-
 test/orm/test_transaction.py                      |  28 ++
 test/orm/test_unitofworkv2.py                     | 447 +++++++++++++++++++++-
 test/orm/test_update_delete.py                    |  39 +-
 test/orm/test_versioning.py                       |  56 ++-
 test/requirements.py                              |   4 +
 test/sql/test_compiler.py                         |  26 +-
 test/sql/test_insert.py                           |  26 ++
 test/sql/test_returning.py                        |  27 ++
 test/sql/test_update.py                           | 124 ++++++
 tox.ini                                           |   9 +-
 82 files changed, 3343 insertions(+), 642 deletions(-)
 delete mode 100644 doc/build/testdocs.py
 create mode 100644 test/base/test_tutorials.py

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