]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fixed a gotcha where inadvertently calling list() on a
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 18 Nov 2012 15:38:02 +0000 (10:38 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 18 Nov 2012 15:38:02 +0000 (10:38 -0500)
commit1e29a74bd62c6c872819388e430901c35f84f07c
tree98fedf95477a04dd2adf570aba965e248935570d
parent0f56aa56c5de13ab14bd8e8d03b6e785c39a5bf0
 Fixed a gotcha where inadvertently calling list() on a
      :class:`.ColumnElement` would go into an endless loop, if
      :meth:`.ColumnOperators.__getitem__` were implemented.
      A new NotImplementedError is emitted via ``__iter__()``.
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/sql/operators.py
test/dialect/test_postgresql.py
test/sql/test_operators.py