diff options
author | Ram Rachum <ram@rachum.com> | 2022-12-05 18:56:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 18:56:13 (GMT) |
commit | 51ee0a29e9b20c3e4a94a675e73a894ee2fe447b (patch) | |
tree | e0676479fedc683c6a5e68f95dea4005223d66d9 /Doc/library | |
parent | 124ecd657646f808d1d3282c37ee19aae6bcb47f (diff) | |
download | cpython-51ee0a29e9b20c3e4a94a675e73a894ee2fe447b.zip cpython-51ee0a29e9b20c3e4a94a675e73a894ee2fe447b.tar.gz cpython-51ee0a29e9b20c3e4a94a675e73a894ee2fe447b.tar.bz2 |
dataclasses.rst: Prevent horizontal scrolling (gh-100025)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dataclasses.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 8472996..32c524a 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -79,7 +79,8 @@ Module contents class C: ... - @dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False, match_args=True, kw_only=False, slots=False, weakref_slot=False) + @dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False, + match_args=True, kw_only=False, slots=False, weakref_slot=False) class C: ... |