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 simple_coder878
Recipients simple_coder878
Date 2021-10-04.20:31:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633379516.48.0.713507268765.issue45366@roundup.psfhosted.org>
In-reply-to
Content
Also wanted to add that I did try another variation of the first example where I set the default_factory field's init value to False and I got the same error.

from dataclasses import dataclass, field

@dataclass(init=False)
class TestObject(object):
    m: str = field(default='hi')
    k: list = field(init=False, default_factory=list)

    def test(self):
        print(f'm is {self.m} ')
        print(f'k is {self.k}')

if __name__ == '__main__':
    myobject = TestObject()
    myobject.test()

Also produces 

Traceback (most recent call last):
  File "H:\unit_test\tests_dataclass.py", line 81, in <module>
    myobject.test()
  File "H:\unit_test\tests_dataclass.py", line 76, in test
    print(f'k is {self.k}')
AttributeError: 'TestObject' object has no attribute 'k'
m is hi
History
Date User Action Args
2021-10-04 20:31:56simple_coder878setrecipients: + simple_coder878
2021-10-04 20:31:56simple_coder878setmessageid: <1633379516.48.0.713507268765.issue45366@roundup.psfhosted.org>
2021-10-04 20:31:56simple_coder878linkissue45366 messages
2021-10-04 20:31:56simple_coder878create