Opened 4 hours ago

Last modified 4 hours ago

#36104 assigned Bug

forms.Media shouldn't expect media objects only

Reported by: Matthias Kestenholz Owned by: Matthias Kestenholz
Component: Forms Version: 5.1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

While thinking about https://forum.djangoproject.com/t/rejuvenating-vs-deprecating-form-media/21285 I have noticed that the forms.Media.__add__ method assumes that media objects are only ever added to each other. That doesn't necessarily have to be the case.

I propose returning NotImplemented when the RHS isn't a Media instance but something else.

All tests pass locally.

(It has nothing to do with https://code.djangoproject.com/ticket/35648 specifically but the same discussion probably applies.)

Change History (1)

comment:1 by Matthias Kestenholz, 4 hours ago

Note: See TracTickets for help on using tickets.
Back to Top