1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00
django/django/test
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
..
__init__.py Refs #33476 -- Reformatted code with Black. 2022-02-07 20:37:05 +01:00
client.py Fixed 35467 -- Replaced urlparse with urlsplit where appropriate. 2024-05-29 10:48:27 -03:00
html.py Applied Black's 2024 stable style. 2024-01-26 12:45:07 +01:00
runner.py Moved --failfast to DiscoverRunner. 2024-03-09 20:34:00 +01:00
selenium.py Fixed SeleniumTestCase.set_emulated_media() when using selenium_hub. 2024-05-13 17:31:35 +02:00
signals.py Refs #15667 -- Added resetting default renderer when FORM_RENDERER is changed. 2023-09-29 08:54:13 +02:00
testcases.py Fixed 35467 -- Replaced urlparse with urlsplit where appropriate. 2024-05-29 10:48:27 -03:00
utils.py Refs #34986 -- Moved garbage_collect() helper to django.test.utils. 2023-12-06 09:26:11 +01:00