diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-15 15:13:13 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-15 15:13:13 -0400 |
| commit | 652a24f0303b9bb0e7a326b05709d7660793f90b (patch) | |
| tree | 03e06b27403ae76d12fbd564291a52ae5f35f0f1 /doc | |
| parent | 5a68f856daee59caf4c9da7d06880eada9d70302 (diff) | |
| download | sqlalchemy-652a24f0303b9bb0e7a326b05709d7660793f90b.tar.gz | |
- The :class:`.IdentityMap` exposed from :class:`.Session.identity`
now returns lists for ``items()`` and ``values()`` in Py3K.
Early porting to Py3K here had these returning iterators, when
they technically should be "iterable views"..for now, lists are OK.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_10.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index 439d02c47..fb639ddf7 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -17,6 +17,14 @@ :version: 1.0.0 .. change:: + :tags: bug, orm, py3k + + The :class:`.IdentityMap` exposed from :class:`.Session.identity` + now returns lists for ``items()`` and ``values()`` in Py3K. + Early porting to Py3K here had these returning iterators, when + they technically should be "iterable views"..for now, lists are OK. + + .. change:: :tags: orm, feature UPDATE statements can now be batched within an ORM flush |
