Opened 10 years ago

Last modified 3 years ago

#22640 closed Cleanup/optimization

Can create model instance with conflicting args and kwargs value for the same field — at Version 4

Reported by: Peter Zsoldos Owned by: nobody
Component: Database layer (models, ORM) 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: no UI/UX: no

Description (last modified by Anton Samarchyan)

Discovered while working on #18586

To reproduce it, add the following test (it's using tests.basic.models.Article)

    from django.utils import six
    def test_cannot_specify_same_field_with_args_and_kwargs_too(self):
        six.assertRaisesRegex(
            self,
            TypeError,
            "__init__() got multiple values for argument 'headline'",
            Article,
            None, # id
            'args based headline',
            headline='kwargs based headline',
            pub_date=datetime(2005, 7, 31),
        )

Change History (4)

comment:1 by Tim Graham, 10 years ago

For what it's worth, I didn't realize there was any attempt to support positional arguments in model instantiation (although it is tested, is it documented anywhere?). May not be worth fixing, in my opinion.

comment:2 by Baptiste Mispelon, 10 years ago

Triage Stage: UnreviewedAccepted
Type: BugCleanup/optimization

Hi,

From what I understand, *args instanciation is there for performance reasons (see [1]).

I'll accept this ticket on the basis that it'd be nice to fix it but only if it doesn't impact performance negatively.

Thanks.

[1] https://github.com/django/django/blob/908c67e719a54b8b612cb7df732126f42350f3fa/django/db/models/base.py#L418-L421

Last edited 4 years ago by Baptiste Mispelon (previous) (diff)

comment:3 by Peter Zsoldos, 10 years ago

Last edited 7 years ago by Anton Samarchyan (previous) (diff)

comment:4 by Anton Samarchyan, 7 years ago

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