1. 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
  2. 4ddc99d bpo-33116: Add 'Field' to dataclasses.__all__. (GH-6182) (GH-6183) by Miss Islington (bot) · 7 years ago
  3. 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
  4. 3d41f48 bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) (GH-6153) by Miss Islington (bot) · 7 years ago
  5. 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
  6. a93e3dc bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) (GH-5920) by Miss Islington (bot) · 8 years ago
  7. 4cffe2f bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (GH-5891) (GH-5902) by Miss Islington (bot) · 8 years ago
  8. 1a57906 Fix 'deecorator' typo in test/test_dataclasses (GH-5899) by Miss Islington (bot) · 8 years ago
  9. b6b6669 Exhaustively test dataclass hashing when no hash= value is provided. This is in anticipation of changing how non-default hashing is handled. (GH-5834) (GH-5889) by Miss Islington (bot) · 8 years ago
  10. 7c99e93 Fix trivial typo in test_dataclasses.py. (GH-5398) by Eric V. Smith · 8 years ago
  11. ea8fc52 bpo-32513: Make it easier to override dunders in dataclasses. (GH-5366) by Eric V. Smith · 8 years ago
  12. d80b443 bpo-32279: Add additional params to make_dataclass(), pass through to dataclass(). (gh-5117) by Eric V. Smith · 8 years ago
  13. ed7d429 bpo-32278: Allow dataclasses.make_dataclass() to omit type information. (gh-5115) by Eric V. Smith · 8 years ago
  14. 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
  15. 03220fd bpo-32427: Expose dataclasses.MISSING object. (#5045) by Eric V. Smith · 8 years ago
  16. 13a6c09 bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903) by Serhiy Storchaka · 8 years ago
  17. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 8 years ago
  18. 24e77f9 Use raw strings for regex to avoid invalid escape sequences. (GH-4741) by Eric V. Smith · 8 years ago
  19. f0db54a bpo-32214: Implement PEP 557: Data Classes (#4704) by Eric V. Smith · 8 years ago