[Sqlalchemy-commits] commit/sqlalchemy: 5 new changesets
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2015-11-30 17:42:42
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6ab120558078/ Changeset: 6ab120558078 Branch: None User: pgjones Date: 2015-10-30 20:20:58+00:00 Summary: Change generator termination from StopIteration to return. >From [PEP 479](https://www.python.org/dev/peps/pep-0479/) the correct way to terminate a generator is to return (which implicitly raises StopIteration) rather than raise StopIteration. Without this change using sqlalchemy in python 3.5 or greater results in these warnings PendingDeprecationWarning: generator '__iter__' raised StopIteration which this commit should remove. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a058233f55b2/ Changeset: a058233f55b2 Branch: None User: zzzeek Date: 2015-11-30 17:35:10+00:00 Summary: Merge remote-tracking branch 'origin/pr/211' Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/735fb9295433/ Changeset: 735fb9295433 Branch: None User: pgjones Date: 2015-11-30 17:35:35+00:00 Summary: Change generator termination from StopIteration to return. >From [PEP 479](https://www.python.org/dev/peps/pep-0479/) the correct way to terminate a generator is to return (which implicitly raises StopIteration) rather than raise StopIteration. Without this change using sqlalchemy in python 3.5 or greater results in these warnings PendingDeprecationWarning: generator '__iter__' raised StopIteration which this commit should remove. (cherry picked from commit 6ab120558078bdcbfbe06d2ca55bd7a0d417bbb4) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4bb6770ae872/ Changeset: 4bb6770ae872 Branch: rel_1_0 User: zzzeek Date: 2015-11-30 17:40:51+00:00 Summary: - update changelog for all the py3.5/3.6 related prs at once Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/2c5ba60269c8/ Changeset: 2c5ba60269c8 Branch: None User: zzzeek Date: 2015-11-30 17:41:10+00:00 Summary: - update changelog for all the py3.5/3.6 related prs at once (cherry picked from commit 4bb6770ae872b69bd65ba0d67a7e1453d1a4e14b) 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. |