[issue32279] Pass keyword arguments from dataclasses.make_dataclass() to @dataclass.

2018-01-06 Thread Eric V. Smith
Change by Eric V. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ _

[issue32279] Pass keyword arguments from dataclasses.make_dataclass() to @dataclass.

2018-01-06 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset d80b443f02e087dd289ffefd04179c675304d76d by Eric V. Smith in branch 'master': bpo-32279: Add additional params to make_dataclass(), pass through to dataclass(). (gh-5117) https://github.com/python/cpython/commit/d80b443f02e087dd289ffefd04179c675

[issue32279] Pass keyword arguments from dataclasses.make_dataclass() to @dataclass.

2018-01-06 Thread Eric V. Smith
Change by Eric V. Smith : -- pull_requests: +4983 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32279] Pass keyword arguments from dataclasses.make_dataclass() to @dataclass.

2018-01-06 Thread Eric V. Smith
Change by Eric V. Smith : -- keywords: +patch pull_requests: +4982 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue32279] Pass keyword arguments from dataclasses.make_dataclass() to @dataclass.

2017-12-11 Thread Eric V. Smith
New submission from Eric V. Smith : make_dataclass() should take optional keyword only arguments and pass them to @dataclass() when it uses it after it creates a new class. The parameters are: init=True, repr=True, eq=True, order=False, hash=None, frozen=False Obviously, these should reflect t