Opened 3 years ago

Last modified 3 years ago

#33368 closed Bug

Durationfield.clean fails to handle broken data — at Version 1

Reported by: Florian Apolloner Owned by: nobody
Component: Core (Other) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description (last modified by Florian Apolloner)

The actual input string was 'P3(3D' {{{

Uncaught Python exception:

ValueError: could not convert string to float: '3(3'
Traceback (most recent call last):

File "basic_fuzzer.py", line 22, in TestOneInput
File "fuzzers.py", line 294, in test_forms_DurationField
File "django/forms/fields.py", line 149, in clean
File "django/forms/fields.py", line 502, in to_python
File "django/utils/dateparse.py", line 154, in parse_duration
File "django/utils/dateparse.py", line 154, in <dictcomp>


}}}

Change History (1)

comment:1 by Florian Apolloner, 3 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top