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 Hênio Tierra Sampaio, serhiy.storchaka, terry.reedy
Date 2020-03-21.10:26:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584786378.54.0.507667260446.issue40011@roundup.psfhosted.org>
In-reply-to
Content
The problem is in ExceptionCatcher. It uses builtin function apply() which was outdated even in Python 2.7 and was removed in Python 3 (instead of apply(func, args) you can use func(*args)). So that code always failed, but all exceptions were logged and suppressed. You may see it in your logs at the start of the application.
History
Date User Action Args
2020-03-21 10:26:18serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, Hênio Tierra Sampaio
2020-03-21 10:26:18serhiy.storchakasetmessageid: <1584786378.54.0.507667260446.issue40011@roundup.psfhosted.org>
2020-03-21 10:26:18serhiy.storchakalinkissue40011 messages
2020-03-21 10:26:18serhiy.storchakacreate