1. 1757ddd Fix dataclass comment typo _eq__ -> __eq__ (GH-26433) (GH-26436) by Miss Islington (bot) · 4 years, 2 months ago
  2. 99ad742 bpo-44015: dataclasses should allow KW_ONLY to be specified only once per class (GH-25841) by Eric V. Smith · 4 years, 3 months ago
  3. 823fbf4 If using a frozen class with slots, add __getstate__ and __setstate__ to set the instance values. (GH-25786) by Eric V. Smith · 4 years, 3 months ago
  4. c241991 bpo-42269: Add slots parameter to dataclass decorator (GH-24171) by Yurii Karabas · 4 years, 3 months ago
  5. c028053 Add keyword-only fields to dataclasses. (GH=25608) by Eric V. Smith · 4 years, 3 months ago
  6. b0544ba bpo-38605: Revert making 'from __future__ import annotations' the default (GH-25490) by Pablo Galindo · 4 years, 4 months ago
  7. 76beadb Fix typo in a dataclasses comment. (GH-25454) by Eric V. Smith · 4 years, 4 months ago
  8. c1a66bd Remove an unnecessary copy of the 'namespace' parameter to make_dataclass(). (GH-25372) by Eric V. Smith · 4 years, 4 months ago
  9. 750f484 bpo-43764: Add match_args=False parameter to dataclass decorator and to make_dataclasses function. (GH-25337) by Eric V. Smith · 4 years, 4 months ago
  10. d92c59f bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284) by Brandt Bucher · 4 years, 4 months ago
  11. 376ffc6 bpo-43176: Fix processing of empty dataclasses (GH-24484) by Iurii Kemaev · 4 years, 4 months ago
  12. 7522067 bpo-36470: Allow dataclasses.replace() to handle InitVars with default values (GH-20867) by Zackery Spytz · 4 years, 4 months ago
  13. 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 5 months ago
  14. c7437e2 bpo-41747: Ensure all dataclass methods uses their parents' qualname (GH-22155) by Batuhan Taskaya · 4 years, 10 months ago
  15. 044a104 bpo-38605: Make 'from __future__ import annotations' the default (GH-20434) by Batuhan Taskaya · 4 years, 10 months ago
  16. bef7d29 bpo-41905: Add abc.update_abstractmethods() (GH-22485) by Ben Avrahami · 4 years, 10 months ago
  17. 80526f6 Fix typo in dataclasses module (GH-21109) by Jürgen Gmach · 5 years ago
  18. d01628e bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425) by Ethan Smith · 5 years ago
  19. d219cc4 bpo-34776: Fix dataclasses to support __future__ "annotations" mode (#9518) by Yury Selivanov · 6 years ago
  20. 793cb85 bpo-38431: Fix __repr__ method of InitVar to work with typing objects. (GH-16702) by Samuel Colvin · 6 years ago
  21. b4d0b39 bpo-38209: Simplify dataclasses.InitVar by using __class_getitem__(). (GH-16255) by Serhiy Storchaka · 6 years ago
  22. b0f4dab bpo-37868: Improve is_dataclass for instances. (GH-15325) by Eric V. Smith · 6 years ago
  23. 96e12d5 Fix typos in docs, comments and test assert messages (#14872) by Min ho Kim · 6 years ago
  24. 2d88e63 bpo-37163: Make the obj argument of dataclasses.replace() a positional-only. (GH-14390) by Serhiy Storchaka · 6 years ago
  25. 01ee12b bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927) by Augusto Hack · 6 years ago
  26. 2085bd0 bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) by Serhiy Storchaka · 6 years ago
  27. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 6 years ago
  28. dd13c88 bpo-33947: dataclasses no longer can raise RecursionError in repr (GF9916) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 7 years ago
  29. 9b9d97d bpo-34363: dataclasses.asdict() and .astuple() now handle fields which are namedtuples. (GH-9151) by Eric V. Smith · 7 years ago
  30. 4d12e4d bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452) by Vadim Pushtaev · 7 years ago
  31. e55ca3f Fix typo in dataclasses documentation (GH-8102) by Artjom · 7 years ago
  32. 3d70f7a bpo-33805: Improve error message of dataclasses.replace() (GH-7580) by Dong-hee Na · 7 years ago
  33. e7adf2b bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488) by Eric V. Smith · 7 years ago
  34. 4e81296 bpo-33536: Validate make_dataclass() field names. (GH-6906) by Eric V. Smith · 7 years ago
  35. 9285835 bpo-33534: Remove unneeded test. (GH-6897) by Eric V. Smith · 7 years ago
  36. f8e7549 Reflow dataclasses comments (GH-6893) by Eric V. Smith · 7 years ago
  37. 2a7bacb bpo-33453: Handle string type annotations in dataclasses. (GH-6768) by Eric V. Smith · 7 years ago
  38. 01abc6e bpo-33517: dataclasses: Add the field type to Field repr (GH-6858) by Eric V. Smith · 7 years ago
  39. 3059042 bpo-33502: dataclass._Dataclassparams repr: use repr of each member. (GH-6812) by Eric V. Smith · 7 years ago
  40. 2473eea bpo-33494: Change dataclasses.Fields repr to use the repr of each of its members (GH-6798) by Eric V. Smith · 7 years ago
  41. 5a7092d Allow dynamic creation of generic dataclasses (GH-6319) by Ivan Levkivskyi · 7 years ago
  42. 5219952 bpo-33175: dataclasses should look up __set_name__ on class, not instance (GH-6305) by Eric V. Smith · 7 years ago
  43. de7a2f0 bpo-33141: Have dataclasses.Field pass through __set_name__ to any default argument. (GH-6260) by Eric V. Smith · 7 years ago
  44. 01d618c bpo-33134: dataclasses: use function dispatch table for hash, instead of a string lookup which then is tested with if tests. (GH-6222) by Eric V. Smith · 7 years ago
  45. f96ddad Trivial dataclass cleanups: (GH-6218) by Eric V. Smith · 7 years ago
  46. 56970b8 bpo-32505: dataclasses: raise TypeError if a member variable is of type Field, but doesn't have a type annotation. (GH-6192) by Eric V. Smith · 7 years ago
  47. 8e4560a Add 'Field' to dataclasses.__all__. (GH-6182) by Eric V. Smith · 7 years ago
  48. 8f6eccd bpo-32896: Fix error when subclassing a dataclass with a field that uses a default_factory (GH-6170) by Eric V. Smith · 7 years ago
  49. 7389fd9 bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) by Eric V. Smith · 7 years ago
  50. f199bc6 bpo-32953: Dataclasses: frozen should not be inherited for non-dataclass derived classes (#6147) by Eric V. Smith · 7 years ago
  51. 5da8cfb Fixed incorrect default value for dataclass unsafe_hash. (GH-5949) by Eric V. Smith · 7 years ago
  52. 2fa6b9e bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) by Eric V. Smith · 7 years ago
  53. dbf9cff bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (#5891) by Eric V. Smith · 7 years ago
  54. ea8fc52 bpo-32513: Make it easier to override dunders in dataclasses. (GH-5366) by Eric V. Smith · 8 years ago
  55. d911e40 bpo-32226: PEP 560: improve typing module (#4906) by Ivan Levkivskyi · 8 years ago
  56. d55209d Fix obvious typos in docstrings (#5151) by Raymond Hettinger · 8 years ago
  57. d138892 bpo-32506: Change dataclasses from OrderedDict to plain dict. (gh-5131) by Eric V. Smith · 8 years ago
  58. d327ae6 Fix dataclasses docstring typo. (gh-5118) by Eric V. Smith · 8 years ago
  59. d80b443 bpo-32279: Add additional params to make_dataclass(), pass through to dataclass(). (gh-5117) by Eric V. Smith · 8 years ago
  60. ed7d429 bpo-32278: Allow dataclasses.make_dataclass() to omit type information. (gh-5115) by Eric V. Smith · 8 years ago
  61. e7ba013 bpo-32499: Add dataclasses.is_dataclass(obj), which returns True if obj is a dataclass or an instance of one. (#5113) by Eric V. Smith · 8 years ago
  62. 03220fd bpo-32427: Expose dataclasses.MISSING object. (#5045) by Eric V. Smith · 8 years ago
  63. f0db54a bpo-32214: Implement PEP 557: Data Classes (#4704) by Eric V. Smith · 8 years ago