]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fixed bug where list instrumentation would fail to represent a
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Aug 2013 17:27:27 +0000 (13:27 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Aug 2013 17:29:14 +0000 (13:29 -0400)
commit4bcd7e38e12ca2a74de1644b7d260497a64bc7dd
treef9e099e2a8b27782542d5c06b967c54079984136
parentcc031065806c630f337271a26fc722fbc9f2a79a
Fixed bug where list instrumentation would fail to represent a
setslice of ``[0:0]`` correctly, which in particular could occur
when using ``insert(0, item)`` with the association proxy.  Due
to some quirk in Python collections, the issue was much more likely
with Python 3 rather than 2.  Also in 0.8.3, 0.7.11.
[ticket:2807]

Conflicts:
doc/build/changelog/changelog_09.rst

Conflicts:
doc/build/changelog/changelog_08.rst
doc/build/changelog/changelog_07.rst
lib/sqlalchemy/orm/collections.py
test/orm/test_collection.py