unt-libraries / django-nomination

A Django application for nominating URLs by project.
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

compile regular expressions outside of loops #38

Closed ldko closed 7 years ago

ldko commented 8 years ago

In url_handler.create_json_browse there are multiple regex that are compiled inside of loops such as here. For efficiency, we should compile the regex outside of the loops instead of on every iteration.

Deals with same function as issue #26.