Thread: [Sqlalchemy-commits] commit/sqlalchemy: 2 new changesets (Page 3)
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2013-07-13 01:53:55
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/63488b2d1ea4/ Changeset: 63488b2d1ea4 Branch: master User: zzzeek Date: 2013-07-13 03:52:54 Summary: The newly added SQLite DATETIME arguments storage_format and regexp apparently were not fully implemented correctly; while the arguments were accepted, in practice they would have no effect; this has been fixed. Also in 0.8.3. [ticket:2781] Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2edc13a6b82b/ Changeset: 2edc13a6b82b Branch: rel_0_8 User: zzzeek Date: 2013-07-13 03:53:28 Summary: The newly added SQLite DATETIME arguments storage_format and regexp apparently were not fully implemented correctly; while the arguments were accepted, in practice they would have no effect; this has been fixed. [ticket:2781] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-13 02:02:32
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fd8b2d188c58/ Changeset: fd8b2d188c58 Branch: master User: zzzeek Date: 2013-07-13 04:01:58 Summary: doc fix Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4018a03e7a0b/ Changeset: 4018a03e7a0b Branch: rel_0_8 User: zzzeek Date: 2013-07-13 04:02:13 Summary: doc fix Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-18 21:58:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/105c2e55ef32/ Changeset: 105c2e55ef32 Branch: None User: zzzeek Date: 2013-07-18 22:30:10 Summary: add a test differentiating insert between clslevel, instancelevel Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/93ea43539096/ Changeset: 93ea43539096 Branch: ticket_2268 User: zzzeek Date: 2013-07-18 23:55:52 Summary: step 1 is to refactor all the _listen() methods to do their work in terms of a central _EventKey() class, so that all these calls can be tracked and linked to the original arguments. But we've uncovered a bug in the existing event logic in the ORM that has to be resolved before we can continue Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-19 03:19:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9c6e45ff0157/ Changeset: 9c6e45ff0157 Branch: master User: zzzeek Date: 2013-07-19 05:17:33 Summary: Fixed bug in ORM-level event registration where the "raw" or "propagate" flags could potentially be mis-configured in some "unmapped base class" configurations. Also in 0.8.3. [ticket:2786] Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/90d992f2da1e/ Changeset: 90d992f2da1e Branch: rel_0_8 User: zzzeek Date: 2013-07-19 05:19:04 Summary: Fixed bug in ORM-level event registration where the "raw" or "propagate" flags could potentially be mis-configured in some "unmapped base class" configurations. Also in 0.8.3. [ticket:2786] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-19 15:38:43
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f84d71fa3d65/ Changeset: f84d71fa3d65 Branch: None User: davidjb Date: 2013-07-19 06:40:41 Summary: Minor hybrid extension documentation update Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/261b46d9477b/ Changeset: 261b46d9477b Branch: master User: zzzeek Date: 2013-07-19 17:37:27 Summary: Merge pull request #18 from davidjb/patch-1 Minor hybrid extension documentation update Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-20 02:57:39
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/af61551a112b/ Changeset: af61551a112b Branch: master User: zzzeek Date: 2013-07-20 04:56:34 Summary: - Improved the examples in ``examples/generic_associations``, including that ``discriminator_on_association.py`` makes use of single table inheritance do the work with the "discriminator". Also added a true "generic foreign key" example, which works similarly to other popular frameworks in that it uses an open-ended integer to point to any other table, foregoing traditional referential integrity. While we don't recommend this pattern, information wants to be free. Also in 0.8.3. - Added a convenience class decorator :func:`.as_declarative`, is a wrapper for :func:`.declarative_base` which allows an existing base class to be applied using a nifty class-decorated approach. Also in 0.8.3. Affected #: 10 files https://bitbucket.org/zzzeek/sqlalchemy/commits/37fc3e3bf8a4/ Changeset: 37fc3e3bf8a4 Branch: rel_0_8 User: zzzeek Date: 2013-07-20 04:57:12 Summary: - Improved the examples in ``examples/generic_associations``, including that ``discriminator_on_association.py`` makes use of single table inheritance do the work with the "discriminator". Also added a true "generic foreign key" example, which works similarly to other popular frameworks in that it uses an open-ended integer to point to any other table, foregoing traditional referential integrity. While we don't recommend this pattern, information wants to be free. Also in 0.8.3. - Added a convenience class decorator :func:`.as_declarative`, is a wrapper for :func:`.declarative_base` which allows an existing base class to be applied using a nifty class-decorated approach. Also in 0.8.3. Affected #: 9 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-20 04:41:40
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e60c16c7e6c2/ Changeset: e60c16c7e6c2 Branch: master User: zzzeek Date: 2013-07-20 06:41:10 Summary: tpo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/0655e69c82eb/ Changeset: 0655e69c82eb Branch: rel_0_8 User: zzzeek Date: 2013-07-20 06:41:21 Summary: tpo Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-22 18:04:28
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a44d499aefc0/ Changeset: a44d499aefc0 Branch: None User: zzzeek Date: 2013-07-22 19:14:16 Summary: make sure we maintain the original "fn" and the "wrapped" fn independently Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/dbc6e5193e77/ Changeset: dbc6e5193e77 Branch: ticket_2268 User: zzzeek Date: 2013-07-22 19:57:32 Summary: - more of an idea as far as how to register. but still have the issue how to copy the fns from one listener collection into another, how to find the _EventKey for those fns. Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-07-23 16:19:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/61e50a53483c/ Changeset: 61e50a53483c Branch: None User: zzzeek Date: 2013-07-23 18:00:56 Summary: work out gc a bit better Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5aede209bdee/ Changeset: 5aede209bdee Branch: ticket_2268 User: zzzeek Date: 2013-07-23 18:18:18 Summary: - docs - implement error for removal of non-present event Affected #: 5 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-07 18:29:55
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/34ef21909bd6/ Changeset: 34ef21909bd6 Branch: master User: zzzeek Date: 2013-08-07 20:28:45 Summary: - The :meth:`.Operators.notin_` operator added in 0.8 now properly produces the negation of the expression "IN" returns when used against an empty collection. Also in 0.8.3. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3302187fea0f/ Changeset: 3302187fea0f Branch: rel_0_8 User: zzzeek Date: 2013-08-07 20:29:19 Summary: - The :meth:`.Operators.notin_` operator added in 0.8 now properly produces the negation of the expression "IN" returns when used against an empty collection. Also in 0.8.3. Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-11 06:23:22
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/73c8658831c0/ Changeset: 73c8658831c0 Branch: master User: zzzeek Date: 2013-08-11 08:22:36 Summary: add more docs to index, even though this seems to be a little redundant Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f3fc5840554c/ Changeset: f3fc5840554c Branch: rel_0_8 User: zzzeek Date: 2013-08-11 08:22:54 Summary: add more docs to index, even though this seems to be a little redundant Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-12 15:34:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f080b87a6160/ Changeset: f080b87a6160 Branch: master User: zzzeek Date: 2013-08-12 17:33:17 Summary: - more "when do i create the session" docs, get specific - more glossary terms - turn the session FAQ into rst sections at last Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7779c22e4016/ Changeset: 7779c22e4016 Branch: rel_0_8 User: zzzeek Date: 2013-08-12 17:33:58 Summary: - more "when do i create the session" docs, get specific - more glossary terms - turn the session FAQ into rst sections at last Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-12 18:20:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e8c2a2738b6c/ Changeset: e8c2a2738b6c Branch: master User: zzzeek Date: 2013-08-12 20:20:01 Summary: add some more detail about concurrency Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f08516786565/ Changeset: f08516786565 Branch: rel_0_8 User: zzzeek Date: 2013-08-12 20:20:21 Summary: add some more detail about concurrency Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-12 21:56:43
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f6198d9abf45/ Changeset: f6198d9abf45 Branch: None User: zzzeek Date: 2013-08-12 23:50:37 Summary: - A large refactoring of the ``sqlalchemy.sql`` package has reorganized the import structure of many core modules. ``sqlalchemy.schema`` and ``sqlalchemy.types`` remain in the top-level package, but are now just lists of names that pull from within ``sqlalchemy.sql``. Their implementations are now broken out among ``sqlalchemy.sql.type_api``, ``sqlalchemy.sql.sqltypes``, ``sqlalchemy.sql.schema`` and ``sqlalchemy.sql.ddl``, the last of which was moved from ``sqlalchemy.engine``. ``sqlalchemy.sql.expression`` is also a namespace now which pulls implementations mostly from ``sqlalchemy.sql.elements``, ``sqlalchemy.sql.selectable``, and ``sqlalchemy.sql.dml``. Most of the "factory" functions used to create SQL expression objects have been moved to classmethods or constructors, which are exposed in ``sqlalchemy.sql.expression`` using a programmatic system. Care has been taken such that all the original import namespaces remain intact and there should be no impact on any existing applications. The rationale here was to break out these very large modules into smaller ones, provide more manageable lists of function names, to greatly reduce "import cycles" and clarify the up-front importing of names, and to remove the need for redundant functions and documentation throughout the expression package. Affected #: 45 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4c2863765e34/ Changeset: 4c2863765e34 Branch: master User: zzzeek Date: 2013-08-12 23:56:11 Summary: - header comments Affected #: 6 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-14 00:57:00
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6cb3e4a1cfae/ Changeset: 6cb3e4a1cfae Branch: None User: zzzeek Date: 2013-08-13 23:41:33 Summary: Merge branch 'master' into refactor_modules Conflicts: doc/build/changelog/changelog_09.rst lib/sqlalchemy/sql/ddl.py lib/sqlalchemy/sql/default_comparator.py lib/sqlalchemy/sql/dml.py lib/sqlalchemy/sql/elements.py lib/sqlalchemy/sql/expression.py lib/sqlalchemy/sql/schema.py lib/sqlalchemy/sql/sqltypes.py lib/sqlalchemy/sql/type_api.py Affected #: 14 files https://bitbucket.org/zzzeek/sqlalchemy/commits/c00996028ba9/ Changeset: c00996028ba9 Branch: refactor_modules User: zzzeek Date: 2013-08-14 02:56:15 Summary: removed a lot of import cycles, added new base.py and path_registry.py modules Affected #: 10 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-14 18:25:13
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/df471ff773af/ Changeset: df471ff773af Branch: None User: zzzeek Date: 2013-08-14 19:16:36 Summary: - remove remaining cycles in base.py and collections.py - move _new_mappers flag to be Mapper classlevel Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7f855d188345/ Changeset: 7f855d188345 Branch: refactor_modules User: zzzeek Date: 2013-08-14 20:24:34 Summary: - start moving orm to use util.public_factory - more cycles removed Affected #: 17 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-17 04:05:34
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a34dc8488ba4/ Changeset: a34dc8488ba4 Branch: None User: bacher09 Date: 2013-08-09 16:16:59 Summary: Fix typo in comparator_factory example Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/efb71bd4f33e/ Changeset: efb71bd4f33e Branch: master User: zzzeek Date: 2013-08-17 06:05:19 Summary: Merged in bacher09/sqlalchemy (pull request #5) Fix typo in comparator_factory example Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-17 04:13:14
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4e0a03fabdc2/ Changeset: 4e0a03fabdc2 Branch: None User: prschmid Date: 2013-07-31 23:12:40 Summary: Made primary_key autoincrement=False in versioning example. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/86853e14d505/ Changeset: 86853e14d505 Branch: master User: zzzeek Date: 2013-08-17 06:12:59 Summary: Merged in prschmid/sqlalchemy (pull request #4) Made primary_key autoincrement=False in versioning example. Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-18 19:58:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/76e1a76e175e/ Changeset: 76e1a76e175e Branch: master User: zzzeek Date: 2013-08-18 21:53:16 Summary: formatting Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6028f8234549/ Changeset: 6028f8234549 Branch: rel_0_8 User: zzzeek Date: 2013-08-18 21:57:06 Summary: Backported a change from 0.9 whereby the iteration of a hierarchy of mappers used in polymorphic inheritance loads is sorted on class name, which allows the SELECT statements generated for polymorphic queries to have deterministic rendering, which in turn helps with caching schemes that cache on the SQL string itself. [ticket:2779] Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-18 20:07:00
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9769628ac1c0/ Changeset: 9769628ac1c0 Branch: master User: zzzeek Date: 2013-08-18 22:05:38 Summary: - add WeakSequence.append() - fix and test weakref cleanout for WeakSequence, [ticket:2794] Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ef73845ba773/ Changeset: ef73845ba773 Branch: rel_0_8 User: zzzeek Date: 2013-08-18 22:06:08 Summary: - add WeakSequence.append() - fix and test weakref cleanout for WeakSequence, [ticket:2794] Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-18 22:17:02
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0c19c1c66f3a/ Changeset: 0c19c1c66f3a Branch: None User: zzzeek Date: 2013-08-19 00:01:27 Summary: - reorganize docs so expression, schema are broken out into subfiles, they're too big - fix the targeting of module names moved around by using custom handlers for "Bases", etc. Affected #: 31 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9302be39a5f4/ Changeset: 9302be39a5f4 Branch: master User: zzzeek Date: 2013-08-19 00:16:40 Summary: additoinal Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-18 22:27:58
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/219336d36c53/ Changeset: 219336d36c53 Branch: None User: zzzeek Date: 2013-08-19 00:24:34 Summary: Merge branch 'master' into ticket_2793_merge Conflicts: lib/sqlalchemy/sql/expression.py Affected #: 130 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a71395967221/ Changeset: a71395967221 Branch: ticket_2793 User: zzzeek Date: 2013-08-19 00:26:53 Summary: return_defaults is specific to ValuesBase Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-19 23:54:18
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/cd282f460a84/ Changeset: cd282f460a84 Branch: None User: zzzeek Date: 2013-08-20 01:19:41 Summary: docs Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f7d680d7a366/ Changeset: f7d680d7a366 Branch: ticket_2793 User: zzzeek Date: 2013-08-20 01:53:49 Summary: - keep it as "return_defaults", a property - add SQL tests Affected #: 5 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-21 22:49:57
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4268ea06b3ef/ Changeset: 4268ea06b3ef Branch: master User: zzzeek Date: 2013-08-22 00:48:34 Summary: move FAQ to the docs, [ticket:2133] Affected #: 11 files https://bitbucket.org/zzzeek/sqlalchemy/commits/09b93477d26e/ Changeset: 09b93477d26e Branch: rel_0_8 User: zzzeek Date: 2013-08-22 00:49:34 Summary: move FAQ to the docs, [ticket:2133] Conflicts: doc/build/index.rst Affected #: 11 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-08-21 22:57:42
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0c00892556a8/ Changeset: 0c00892556a8 Branch: master User: zzzeek Date: 2013-08-22 00:57:00 Summary: fix link Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/702be8a7b821/ Changeset: 702be8a7b821 Branch: rel_0_8 User: zzzeek Date: 2013-08-22 00:57:08 Summary: fix link Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |