1. 0aee3be bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488) by Miss Islington (bot) · 7 years ago
  2. 6409e75 bpo-33536: Validate make_dataclass() field names. (GH-6906) by Miss Islington (bot) · 7 years ago
  3. 8e20fc3 bpo-33534: Remove unneeded test. (GH-6897) by Miss Islington (bot) · 7 years ago
  4. 8d486fb Reflow dataclasses comments (GH-6893) by Miss Islington (bot) · 7 years ago
  5. c73268a bpo-33453: Handle string type annotations in dataclasses. (GH-6768) by Miss Islington (bot) · 7 years ago
  6. 5c7e079 bpo-33517: dataclasses: Add the field type to Field repr (GH-6858) by Miss Islington (bot) · 7 years ago
  7. b57aeac bpo-33502: dataclass._Dataclassparams repr: use repr of each member. (GH-6812) by Miss Islington (bot) · 7 years ago
  8. ceb45f0 bpo-33494: Change dataclasses.Fields repr to use the repr of each of its members (GH-6798) by Miss Islington (bot) · 7 years ago
  9. d063ad8 Allow dynamic creation of generic dataclasses (GH-6319) (GH-6320) by Miss Islington (bot) · 7 years ago
  10. faa6f5c bpo-33175: dataclasses should look up __set_name__ on class, not instance (GH-6305) by Miss Islington (bot) · 7 years ago
  11. c6147ac bpo-33141: Have dataclasses.Field pass through __set_name__ to any default argument. (GH-6260) by Miss Islington (bot) · 7 years ago
  12. 9989efb bpo-33134: dataclasses: use function dispatch table for hash, instead of a string lookup which then is tested with if tests. (GH-6222) by Miss Islington (bot) · 7 years ago
  13. 02c19a6 Trivial dataclass cleanups: (GH-6218) by Miss Islington (bot) · 7 years ago
  14. 3b4c6b1 bpo-32505: dataclasses: raise TypeError if a member variable is of type Field, but doesn't have a type annotation. (GH-6192) by Miss Islington (bot) · 7 years ago
  15. 4ddc99d bpo-33116: Add 'Field' to dataclasses.__all__. (GH-6182) (GH-6183) by Miss Islington (bot) · 7 years ago
  16. 22136c9 bpo-32896: Fix error when subclassing a dataclass with a field that uses a default_factory (GH-6170) (GH-6171) by Miss Islington (bot) · 7 years ago
  17. 3d41f48 bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) (GH-6153) by Miss Islington (bot) · 7 years ago
  18. 4564831 bpo-32953: Dataclasses: frozen should not be inherited for non-dataclass derived classes (GH-6147) (GH-6148) by Miss Islington (bot) · 7 years ago
  19. 398242a Fixed incorrect default value for dataclass unsafe_hash. (GH-5949) (GH-5950) by Miss Islington (bot) · 7 years ago
  20. a93e3dc bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) (GH-5920) by Miss Islington (bot) · 7 years ago
  21. 4cffe2f bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (GH-5891) (GH-5902) by Miss Islington (bot) · 7 years ago
  22. ea8fc52 bpo-32513: Make it easier to override dunders in dataclasses. (GH-5366) by Eric V. Smith · 8 years ago
  23. d911e40 bpo-32226: PEP 560: improve typing module (#4906) by Ivan Levkivskyi · 8 years ago
  24. d55209d Fix obvious typos in docstrings (#5151) by Raymond Hettinger · 8 years ago
  25. d138892 bpo-32506: Change dataclasses from OrderedDict to plain dict. (gh-5131) by Eric V. Smith · 8 years ago
  26. d327ae6 Fix dataclasses docstring typo. (gh-5118) by Eric V. Smith · 8 years ago
  27. d80b443 bpo-32279: Add additional params to make_dataclass(), pass through to dataclass(). (gh-5117) by Eric V. Smith · 8 years ago
  28. ed7d429 bpo-32278: Allow dataclasses.make_dataclass() to omit type information. (gh-5115) by Eric V. Smith · 8 years ago
  29. 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
  30. 03220fd bpo-32427: Expose dataclasses.MISSING object. (#5045) by Eric V. Smith · 8 years ago
  31. f0db54a bpo-32214: Implement PEP 557: Data Classes (#4704) by Eric V. Smith · 8 years ago