diff options
author | Łukasz Langa <lukasz@langa.pl> | 2021-09-21 23:33:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 23:33:59 (GMT) |
commit | 8c1e1da565bca9cec792323eb728e288715ef7c4 (patch) | |
tree | 4b78b148f1e5573f68ca0150838a2d80d48cde7f /Doc/reference | |
parent | c800e390941e91a9a276191d2f41b7e0e6e23e9e (diff) | |
download | cpython-8c1e1da565bca9cec792323eb728e288715ef7c4.zip cpython-8c1e1da565bca9cec792323eb728e288715ef7c4.tar.gz cpython-8c1e1da565bca9cec792323eb728e288715ef7c4.tar.bz2 |
[3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit 8f943ca25732d548cf9f0b0393ba8d582fb93e29)
Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/compound_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index a743898..25abc1b 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -1055,7 +1055,7 @@ subject value: patterns using the :data:`~object.__match_args__` attribute on the class ``name_or_attr`` before matching: - I. The equivalent of ``getattr(cls, "__match_args__", ()))`` is called. + I. The equivalent of ``getattr(cls, "__match_args__", ())`` is called. * If this raises an exception, the exception bubbles up. |