gh-102921: [doc] Clarify `exc` argument name in `BaseExceptionGroup` is plural (#102922)

This commit is contained in:
Kevin Kirsche 2023-03-22 14:14:05 -04:00 committed by GitHub
parent 3468c768ce
commit 9b19d3936d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -948,8 +948,8 @@ their subgroups based on the types of the contained exceptions.
these fields do not need to be updated by :meth:`derive`. ::
>>> class MyGroup(ExceptionGroup):
... def derive(self, exc):
... return MyGroup(self.message, exc)
... def derive(self, excs):
... return MyGroup(self.message, excs)
...
>>> e = MyGroup("eg", [ValueError(1), TypeError(2)])
>>> e.add_note("a note")