1
0
mirror of https://github.com/django/django.git synced 2025-01-03 15:06:09 +00:00
django/django/forms
Jake Howard ff308a0604
Fixed 35467 -- Replaced urlparse with urlsplit where appropriate.
This work should not generate any change of functionality, and
`urlsplit` is approximately 6x faster.

Most use cases of `urlparse` didn't touch the path, so they can be
converted to `urlsplit` without any issue. Most of those which do use
`.path`, simply parse the URL, mutate the querystring, then put them
back together, which is also fine (so long as urlunsplit is used).
2024-05-29 10:48:27 -03:00
..
jinja2/django/forms Refs #34488 -- Made ClearableFileInput preserve "Clear" checked attribute when form is invalid. 2024-03-14 14:03:14 +01:00
templates/django/forms Refs #34488 -- Made ClearableFileInput preserve "Clear" checked attribute when form is invalid. 2024-03-14 14:03:14 +01:00
__init__.py
boundfield.py Refs #32819 -- Avoided adding 'aria-describedby' to hidden inputs. 2024-04-30 11:11:02 +02:00
fields.py Fixed 35467 -- Replaced urlparse with urlsplit where appropriate. 2024-05-29 10:48:27 -03:00
forms.py Fixed #32923 -- Refactored out Field._clean_bound_field(). 2024-01-23 09:47:31 +01:00
formsets.py Fixed #29942 -- Restored source file linking in docs by using the Sphinx linkcode ext. 2024-05-14 22:08:29 -03:00
models.py Fixed #35241 -- Cached model's full parent list. 2024-02-26 05:38:31 +01:00
renderers.py Refs #32339 -- Fixed super() call in deprecated renderers. 2023-05-17 11:11:43 -03:00
utils.py Fixed #34077 -- Added form field rendering. 2023-03-24 10:16:30 +01:00
widgets.py Applied Black's 2024 stable style. 2024-01-26 12:45:07 +01:00