summaryrefslogtreecommitdiff
path: root/tests/requests/test_data_upload_settings.py
AgeCommit message (Collapse)Author
2023-01-07Renamed 'requests' test package.Tim Graham
This avoids a collision when third-party database backends depend on the Requests HTTP library.
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
In these cases Black produces unexpected results, e.g. def make_random_password( self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789', ): or cursor.execute(""" SELECT ... """, [table name], )
2021-02-23Fixed DataUploadMaxNumberOfFieldsFormPost.test_number_exceeded().Mariusz Felisiak
Follow up to 0ad9fa02e07b853003b3c2244d1015620705f020.
2021-02-19Refs CVE-2021-23336 -- Updated tests and release notes for affected versions.Nick Pope
2016-08-03Fixed #27005 -- Fixed crash if request.META[''CONTENT_LENGTH']=''.Tim Graham
2016-05-12Fixed #21231 -- Enforced a max size for GET/POST values read into memory.Andre Cruz
Thanks Tom Christie for review.