1. 9646630 bpo-36766: Typos in docs and code comments (GH-13116) by penguindustin · 5 years ago
  2. be372d7 bpo-36678: Rename duplicate tests in test_dataclasses (GH-12899) by Windson yang · 5 years ago
  3. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 5 years ago
  4. dd13c88 bpo-33947: dataclasses no longer can raise RecursionError in repr (GF9916) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  5. 9b9d97d bpo-34363: dataclasses.asdict() and .astuple() now handle fields which are namedtuples. (GH-9151) by Eric V. Smith · 6 years ago
  6. 4d12e4d bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452) by Vadim Pushtaev · 6 years ago
  7. 3fe5ccc bpo-34184: Fix running Lib/test/test_dataclasses.py as a script. (GH-8382) by Serhiy Storchaka · 6 years ago
  8. 3d70f7a bpo-33805: Improve error message of dataclasses.replace() (GH-7580) by Dong-hee Na · 6 years ago
  9. e7adf2b bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488) by Eric V. Smith · 6 years ago
  10. 4e81296 bpo-33536: Validate make_dataclass() field names. (GH-6906) by Eric V. Smith · 6 years ago
  11. 2a7bacb bpo-33453: Handle string type annotations in dataclasses. (GH-6768) by Eric V. Smith · 6 years ago
  12. 7494091 Clean up and enhance frozen dataclass tests. (GH-6380) by Eric V. Smith · 6 years ago
  13. 5a7092d Allow dynamic creation of generic dataclasses (GH-6319) by Ivan Levkivskyi · 6 years ago
  14. 5219952 bpo-33175: dataclasses should look up __set_name__ on class, not instance (GH-6305) by Eric V. Smith · 6 years ago
  15. de7a2f0 bpo-33141: Have dataclasses.Field pass through __set_name__ to any default argument. (GH-6260) by Eric V. Smith · 6 years ago
  16. 2b75fc2 Minor fixes to dataclass tests. (GH-6243) by Eric V. Smith · 6 years ago
  17. 51c9ab4 Trivial improvements to dataclasses tests. (GH-6234) by Eric V. Smith · 6 years ago
  18. c42e7aa Fix invalid escape sequence: use raw string. (GH-6225) by Eric V. Smith · 6 years ago
  19. 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 · 6 years ago
  20. 8e4560a Add 'Field' to dataclasses.__all__. (GH-6182) by Eric V. Smith · 6 years ago
  21. 8f6eccd bpo-32896: Fix error when subclassing a dataclass with a field that uses a default_factory (GH-6170) by Eric V. Smith · 6 years ago
  22. 7389fd9 bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) by Eric V. Smith · 6 years ago
  23. f199bc6 bpo-32953: Dataclasses: frozen should not be inherited for non-dataclass derived classes (#6147) by Eric V. Smith · 6 years ago
  24. 2fa6b9e bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) by Eric V. Smith · 6 years ago
  25. 973cae0 Fix 'deecorator' typo in test/test_dataclasses (GH-5899) by Terry Jan Reedy · 6 years ago
  26. dbf9cff bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (#5891) by Eric V. Smith · 6 years ago
  27. 718070d Exhaustively test dataclass hashing when no hash= value is provided. This is in anticipation of changing how non-default hashing is handled. (#5834) by Eric V. Smith · 6 years ago
  28. 7c99e93 Fix trivial typo in test_dataclasses.py. (GH-5398) by Eric V. Smith · 7 years ago
  29. ea8fc52 bpo-32513: Make it easier to override dunders in dataclasses. (GH-5366) by Eric V. Smith · 7 years ago
  30. d80b443 bpo-32279: Add additional params to make_dataclass(), pass through to dataclass(). (gh-5117) by Eric V. Smith · 7 years ago
  31. ed7d429 bpo-32278: Allow dataclasses.make_dataclass() to omit type information. (gh-5115) by Eric V. Smith · 7 years ago
  32. 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 · 7 years ago
  33. 03220fd bpo-32427: Expose dataclasses.MISSING object. (#5045) by Eric V. Smith · 7 years ago
  34. 13a6c09 bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903) by Serhiy Storchaka · 7 years ago
  35. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  36. 24e77f9 Use raw strings for regex to avoid invalid escape sequences. (GH-4741) by Eric V. Smith · 7 years ago
  37. f0db54a bpo-32214: Implement PEP 557: Data Classes (#4704) by Eric V. Smith · 7 years ago