This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, sigurd
Date 2018-06-07.15:15:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528384529.6.0.592728768989.issue33796@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the report. This is the same error you get when using any non-field:

>>> @dataclass
... class C:
...   i: int
...
>>> c = C(4)
>>> replace(c, i=3)
C(i=3)
>>> replace(c, j=3)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\home\eric\local\python\cpython\lib\dataclasses.py", line 1179, in replace
    return obj.__class__(**changes)
TypeError: __init__() got an unexpected keyword argument 'j'

I think the TypeError is correct in both cases. The error message might not be the best.

Are you suggesting that this shouldn't raise a TypeError? Since a ClassVar is not an instance variable, I don't think it makes any sense to replace() it.
History
Date User Action Args
2018-06-07 15:15:29eric.smithsetrecipients: + eric.smith, sigurd
2018-06-07 15:15:29eric.smithsetmessageid: <1528384529.6.0.592728768989.issue33796@psf.upfronthosting.co.za>
2018-06-07 15:15:29eric.smithlinkissue33796 messages
2018-06-07 15:15:29eric.smithcreate