]> 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:27:27 +0000 (13:27 -0400)
commitb13a434f6fb2a947b284f589148aa8cb6974e3d5
tree92e3b7e8b85bd36ec7d50d41b08c5cb22a614bce
parent5b8e8598ab5c604d3ec20c0f6a3e6af06f879308
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]
doc/build/changelog/changelog_07.rst
doc/build/changelog/changelog_08.rst
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/orm/collections.py
test/orm/test_collection.py