summaryrefslogtreecommitdiff
path: root/django/urls/converters.py
AgeCommit message (Collapse)Author
2025-01-15Refs #35090 -- Removed support for django.urls.register_converter() ↵Sarah Boyce
overriding existing converters per deprecation timeline.
2024-03-05Fixed #35252 -- Optimized _route_to_regex().Adam Johnson
co-authored-by: Nick Pope <nick@nickpope.me.uk>
2024-02-23Fixed #35090 -- Deprecated registering URL converters with the same name.Salvo Polizzi
2023-01-18Refs #34233 -- Used @functools.cache.Nick Pope
Python 3.9+ supports @functools.cache as an alias for @functools.lru_cache(maxsize=None).
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2019-02-04Removed django.utils.lru_cache usage.Tim Graham
2017-09-25Fixed #27857 -- Dropped support for Python 3.4.Tim Graham
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.