| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-118974: Add `decorator` argument to `make_dataclass` (gh-122723) | Victorien | 2024-10-01 | 1 | -1/+9 |
|
|
* | gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051) | sobolevn | 2024-09-27 | 1 | -1/+5 |
|
|
* | gh-90562: Support zero argument super with dataclasses when slots=True (gh-12... | Eric V. Smith | 2024-09-25 | 1 | -7/+0 |
|
|
* | gh-123570: Add link to `weakref.ref` from `weakref_slot` docs in `dataclasses... | sobolevn | 2024-09-02 | 1 | -1/+2 |
|
|
* | gh-91126: Docs and tests for slotted dataclasses with `__init_subclass__` (#1... | sobolevn | 2024-09-01 | 1 | -4/+15 |
|
|
* | gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518) | Wei-Hsiang (Matt) Wang | 2024-09-01 | 1 | -1/+1 |
|
|
* | gh-119260: Clarify is_dataclass Behavior for Subclasses in Documentation and ... | Aditya Borikar | 2024-05-29 | 1 | -2/+2 |
|
|
* | gh-90562: Mention slots pitfall in dataclass docs (#107391) | Josh Cannon | 2024-05-21 | 1 | -1/+4 |
|
|
* | gh-108267 Fix another dataclasses docs typo (#119277) | Alex Waygood | 2024-05-20 | 1 | -1/+2 |
|
|
* | gh-108267: Fix object.__setattr__ regression in dataclasses docs (#119082) | Shantanu | 2024-05-16 | 1 | -1/+2 |
|
|
* | Format None, True, False and NotImplemented as literals (GH-118758) | Serhiy Storchaka | 2024-05-08 | 1 | -1/+1 |
|
|
* | Doc: mark up classes, attributes, parameters, and methods in dataclasses.rst ... | Erlend E. Aasland | 2024-04-14 | 1 | -85/+85 |
|
|
* | dataclasses docs: add some link anchors (#117601) | Jelle Zijlstra | 2024-04-14 | 1 | -0/+8 |
|
|
* | Simpler example of shallow dict export of a dataclass (#117812) | Gouvernathor | 2024-04-14 | 1 | -1/+1 |
|
|
* | Tweak wording for dataclasses.replace (gh-117758) | Gouvernathor | 2024-04-14 | 1 | -2/+2 |
|
|
* | docs: fix over-linking in dataclasses.rst (#117005) | Ned Batchelder | 2024-03-21 | 1 | -78/+80 |
|
|
* | gh-116535: Fix distracting "TypeError" in example code (gh-116538) | Declan | 2024-03-09 | 1 | -2/+2 |
|
|
* | Fix indentation in `__post_init__` documentation. (gh-114666) | Bhushan Mohanraj | 2024-01-28 | 1 | -2/+2 |
|
|
* | Docs: 'still' is a better word than 'nonetheless' (#114598) | Ned Batchelder | 2024-01-26 | 1 | -1/+1 |
|
|
* | gh-88531 Fix dataclass __post_init__/__init__ interplay documentation (gh-107... | Steffen Zeile | 2024-01-17 | 1 | -3/+3 |
|
|
* | gh-110631: Fix reST indentation (#110724) | Ezio Melotti | 2023-10-11 | 1 | -7/+5 |
|
|
* | gh-108751: Add copy.replace() function (GH-108752) | Serhiy Storchaka | 2023-09-06 | 1 | -0/+2 |
|
|
* | gh-108267: Dataclasses docs: Fix object.__setattr__ typo (#108355) | FrozenBob | 2023-08-23 | 1 | -1/+1 |
|
|
* | gh-106107: document correct error that's raised when a mutable default value ... | Roderich Schupp | 2023-06-26 | 1 | -1/+1 |
|
|
* | gh-101100: Add reference doc for __post_init__ (#103818) | Olga Matoula | 2023-04-28 | 1 | -22/+23 |
|
|
* | gh-103810: Fix broken references in dataclasses (#103811) | Olga Matoula | 2023-04-24 | 1 | -72/+74 |
|
|
* | gh-91687: modernize dataclass example typing (#103773) | Allan Lago | 2023-04-24 | 1 | -1/+1 |
|
|
* | gh-102103: add `module` argument to `dataclasses.make_dataclass` (#102104) | Nikita Sobolev | 2023-03-11 | 1 | -1/+5 |
|
|
* | gh-99026 update dataclasses docs for when annotations are inspected (gh-100798) | Akshit Tyagi | 2023-01-06 | 1 | -2/+2 |
|
|
* | dataclasses.rst: Prevent horizontal scrolling (gh-100025) | Ram Rachum | 2022-12-05 | 1 | -1/+2 |
|
|
* | gh-98576: Fix types in dataclass.InitVar example (gh-98577) | Shantanu | 2022-10-31 | 1 | -2/+2 |
|
|
* | dataclasses docs: consistent indentation (4 spaces) in examples (#98855) | FC Stegerman | 2022-10-29 | 1 | -16/+16 |
|
|
* | docs: Change links to label refs (#98454) | Stanley | 2022-10-26 | 1 | -1/+1 |
|
|
* | gh-91330: Tests and docs for dataclass descriptor-typed fields (GH-94424) | Erik De Bonte | 2022-07-05 | 1 | -0/+51 |
|
|
* | Add weakref_slot to dataclass decorator, to allow instances with slots to be ... | Eric V. Smith | 2022-05-02 | 1 | -5/+12 |
|
|
* | bpo-46382 dataclass(slots=True) now takes inherited slots into account (GH-31... | Arie Bovenberg | 2022-03-19 | 1 | -0/+10 |
|
|
* | bpo-43532: add version added to KW_ONLY (GH-31235) | Henry Schreiner | 2022-02-09 | 1 | -0/+2 |
|
|
* | bpo-46290: Fix parameter names in dataclasses docs (GH-30450) | Zsolt Dollenstein | 2022-01-08 | 1 | -12/+12 |
|
|
* | Remove erroneous padding in dataclasses (GH-30076) | Andre Delfino | 2021-12-12 | 1 | -63/+63 |
|
|
* | bpo-44674: Use unhashability as a proxy for mutability for default dataclass ... | Eric V. Smith | 2021-12-11 | 1 | -3/+9 |
|
|
* | bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154) | andrei kulakov | 2021-11-29 | 1 | -4/+18 |
|
|
* | [doc] Reword sentinel object summary in dataclasses (GH-27792) | Ville Korhonen | 2021-09-02 | 1 | -4/+3 |
|
|
* | Fix reST markup in dataclasses.rst (GH-27843) | Jean-Abou-Samra | 2021-08-19 | 1 | -1/+1 |
|
|
* | Fix typo in dataclasses documentation (#27360) | thomkeh | 2021-07-26 | 1 | -1/+1 |
|
|
* | bpo-43558: Add note about base class initialization to dataclasses doc (GH-25... | dhoekstra2000 | 2021-05-10 | 1 | -0/+21 |
|
|
* | Fix a word in dataclasses docs. (GH-26003) | Eric V. Smith | 2021-05-09 | 1 | -1/+1 |
|
|
* | Fix minor grammar problems in dataclasses documentation (GH-25948) | Scott Noyes | 2021-05-06 | 1 | -7/+7 |
|
|
* | dataclasses docs: add a missing word. (GH-25839) | Eric V. Smith | 2021-05-03 | 1 | -1/+1 |
|
|
* | More clarification of kw_only args. (GH-25838) | Eric V. Smith | 2021-05-03 | 1 | -13/+20 |
|
|
* | Fix invalid markup (#25833) | Raymond Hettinger | 2021-05-03 | 1 | -2/+1 |
|
|