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 barry, serhiy.storchaka
Date 2017-09-04.16:52:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
The default case is added just for silencing compiler warning. It is never executed. There are a number of places in the core that look like

    assert(0);
    return NULL; /* or whatever */

This is a dead code, but compilers complain without it.

How do you suggest to improve this code?
History
Date User Action Args
2017-09-04 16:52:23serhiy.storchakasetrecipients: + serhiy.storchaka, barry
2017-09-04 16:52:23serhiy.storchakasetmessageid: <[email protected]>
2017-09-04 16:52:23serhiy.storchakalinkissue31337 messages
2017-09-04 16:52:23serhiy.storchakacreate