[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread Eric V. Smith
Change by Eric V. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset 81f706d2db0f57c4fdd747df6e0a4cffcbc54704 by Miss Islington (bot) in branch '3.8': bpo-42669: Document that `except` rejects nested tuples (GH-23822) (GH-23871) https://github.com/python/cpython/commit/81f706d2db0f57c4fdd747df6e0a4cffcbc54704

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset 409ce4a09e4f96ca9b251c19f5819205aae9ae34 by Miss Islington (bot) in branch '3.9': bpo-42669: Document that `except` rejects nested tuples (GH-23822) (GH-23870) https://github.com/python/cpython/commit/409ce4a09e4f96ca9b251c19f5819205aae9ae34

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +22733 pull_request: https://github.com/python/cpython/pull/23871 ___ Python tracker ___

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +22732 pull_request: https://github.com/python/cpython/pull/23870 ___ Python tracker ___

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-20 Thread miss-islington
miss-islington added the comment: New changeset c95f8bc2700b42f4568886505a819816c9b0ba28 by Colin Watson in branch 'master': bpo-42669: Document that `except` rejects nested tuples (GH-23822) https://github.com/python/cpython/commit/c95f8bc2700b42f4568886505a819816c9b0ba28 -- nosy:

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-17 Thread Colin Watson
Change by Colin Watson : -- keywords: +patch pull_requests: +22682 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23822 ___ Python tracker ___

[issue42669] "except" documentation still suggests nested tuples are allowed

2020-12-17 Thread Colin Watson
New submission from Colin Watson : In Python 2, it was possible to use `except` with a nested tuple, and occasionally natural. For example, `zope.formlib.interfaces.InputErrors` is a tuple of several exception classes, and one might reasonably think to do something like this (this is real