(self, name, value, attrs)
| 855 | option_inherits_attrs = False |
| 856 | |
| 857 | def get_context(self, name, value, attrs): |
| 858 | context = super().get_context(name, value, attrs) |
| 859 | if self.allow_multiple_selected: |
| 860 | context["widget"]["attrs"]["multiple"] = True |
| 861 | return context |
| 862 | |
| 863 | @staticmethod |
| 864 | def _choice_has_empty_value(choice): |
nothing calls this directly
no test coverage detected