]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug where calling :meth:`.Insert.values` with an empty list
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Feb 2014 20:18:22 +0000 (15:18 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Feb 2014 20:23:04 +0000 (15:23 -0500)
commit506817a84e6b3d96c61e1167fe10adeb4c3ca941
tree3ec18904a3ac678f4da93d93bbe1ffd741916022
parent4ac0558e11497553a4d0460111d8fbd667396a7f
- Fixed bug where calling :meth:`.Insert.values` with an empty list
or tuple would raise an IndexError.   It now produces an empty
insert construct as would be the case with an empty dictionary.

Conflicts:
lib/sqlalchemy/sql/dml.py
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/sql/expression.py
test/sql/test_insert.py