Changes between Initial Version and Version 4 of Ticket #22640


Ignore:
Timestamp:
Jan 17, 2017, 3:50:28 PM (7 years ago)
Author:
Anton Samarchyan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22640

    • Property Triage Stage UnreviewedAccepted
    • Property Type BugCleanup/optimization
  • Ticket #22640 – Description

    initial v4  
    33To reproduce it, add the following test (it's using tests.basic.models.Article)
    44{{{#!python
     5    from django.utils import six
    56    def test_cannot_specify_same_field_with_args_and_kwargs_too(self):
    67        six.assertRaisesRegex(
    78            self,
    89            TypeError,
    9             "'foo' is an invalid keyword argument for this function",
     10            "__init__() got multiple values for argument 'headline'",
    1011            Article,
    1112            None, # id
Back to Top