usage of reversed in lib/sqlalchemy/topological.py

Issue #506 resolved
Former user created an issue

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)

  1. Log in to comment