[Python-checkins] [3.11] dataclasses.rst: Prevent horizontal scrolling (gh-100025) (gh-100028)

ericvsmith webhook-mailer at python.org
Mon Dec 5 13:59:40 EST 2022


https://github.com/python/cpython/commit/f3a58cece6c7346355397a3e7848b0df38a0e20d
commit: f3a58cece6c7346355397a3e7848b0df38a0e20d
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ericvsmith <ericvsmith at users.noreply.github.com>
date: 2022-12-05T13:59:34-05:00
summary:

[3.11] dataclasses.rst: Prevent horizontal scrolling (gh-100025) (gh-100028)

dataclasses.rst: Prevent horizontal scrolling (gh-100025)
(cherry picked from commit 51ee0a29e9b20c3e4a94a675e73a894ee2fe447b)

Co-authored-by: Ram Rachum <ram at rachum.com>

Co-authored-by: Ram Rachum <ram at rachum.com>

files:
M Doc/library/dataclasses.rst

diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst
index 847299649d1e..32c524a73487 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:
          ...
 



More information about the Python-checkins mailing list