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 <1504543943.64.0.838711949976.issue31337@psf.upfronthosting.co.za>
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: <1504543943.64.0.838711949976.issue31337@psf.upfronthosting.co.za>
2017-09-04 16:52:23serhiy.storchakalinkissue31337 messages
2017-09-04 16:52:23serhiy.storchakacreate