From: Ram Rachum Date: Mon, 5 Dec 2022 18:56:13 +0000 (+0200) Subject: dataclasses.rst: Prevent horizontal scrolling (gh-100025) X-Git-Tag: v3.12.0a3~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51ee0a29e9b20c3e4a94a675e73a894ee2fe447b;p=thirdparty%2FPython%2Fcpython.git dataclasses.rst: Prevent horizontal scrolling (gh-100025) --- 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: ...