This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients arigo, eric.smith, nascheme, serhiy.storchaka, steven.daprano, thautwarm, vtheno athena
Date 2018-10-08.16:46:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539017160.36.0.545547206417.issue34880@psf.upfronthosting.co.za>
In-reply-to
Content
This can't be changed in 3.6. There are two ways of changing it:

1. Make the marshal module supporting AssertionError as it supports booleans, None, Ellipsis and StopIteration. This will require adding the new marshal format version.

2. Add a new opcode in bytecode.

The latter way is easier. Bytecode is changed in every feature release, and it was already changed in 3.8. New marshal versions are added less often.

There was similar issue with StopAsyncIteration. See issue33041.
History
Date User Action Args
2018-10-08 16:46:00serhiy.storchakasetrecipients: + serhiy.storchaka, arigo, nascheme, eric.smith, steven.daprano, thautwarm, vtheno athena
2018-10-08 16:46:00serhiy.storchakasetmessageid: <1539017160.36.0.545547206417.issue34880@psf.upfronthosting.co.za>
2018-10-08 16:46:00serhiy.storchakalinkissue34880 messages
2018-10-08 16:46:00serhiy.storchakacreate