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 serhiy.storchaka
Recipients eric.smith, serhiy.storchaka
Date 2019-06-05.11:13:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559733184.92.0.103225044701.issue37163@roundup.psfhosted.org>
In-reply-to
Content
>>> from dataclasses import *
>>> @dataclass
... class D:
...     obj: object
... 
>>> replace(D(123), obj='abc')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: replace() got multiple values for argument 'obj'
History
Date User Action Args
2019-06-05 11:13:04serhiy.storchakasetrecipients: + serhiy.storchaka, eric.smith
2019-06-05 11:13:04serhiy.storchakasetmessageid: <1559733184.92.0.103225044701.issue37163@roundup.psfhosted.org>
2019-06-05 11:13:04serhiy.storchakalinkissue37163 messages
2019-06-05 11:13:04serhiy.storchakacreate