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 methane
Recipients JanVok, methane, r.david.murray, serhiy.storchaka, smurfix, vinay.sajip, vstinner, yselivanov
Date 2017-02-22.04:38:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487738334.58.0.0264967567853.issue26789@psf.upfronthosting.co.za>
In-reply-to
Content
I'm -1 on suppress log silently.
While error message is bit surprising,

Traceback (most recent call last):
  File "/usr/lib/python3.5/asyncio/tasks.py", line 93, in __del__
  File "/usr/lib/python3.5/asyncio/base_events.py", line 1160, in call_exception_handler
...
  File "/usr/lib/python3.5/logging/__init__.py", line 1037, in _open
NameError: name 'open' is not defined

This traceback is very meaningful.
You can read tasks.py:93, and find there are pending task remains.

Implementing fallback mechanism make potential risk to miss such very
important traceback.
History
Date User Action Args
2017-02-22 04:38:54methanesetrecipients: + methane, vinay.sajip, vstinner, smurfix, r.david.murray, serhiy.storchaka, yselivanov, JanVok
2017-02-22 04:38:54methanesetmessageid: <1487738334.58.0.0264967567853.issue26789@psf.upfronthosting.co.za>
2017-02-22 04:38:54methanelinkissue26789 messages
2017-02-22 04:38:54methanecreate