- changed status to resolved
usage of reversed in lib/sqlalchemy/topological.py
Issue #506
resolved
lib/sqlalchemy/topological.py Line 4921 uses the python-builtin "reversed" instead of the utility funcion util.reversed defined in util.py This breaks SQLAlchemy on Python2.3 Systems (for example RedhatEL4)
def _create_batched_tree(self, nodes): ... for node in util.reversed(nodes):
Comments (1)
-
repo owner - Log in to comment
ah crap. patched in changeset:2395.
maybe we should also clean up that reversed function to not rely on an exception throw on every call.