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 jaraco
Recipients jaraco
Date 2019-11-12.17:26:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573579569.01.0.575609345468.issue38780@roundup.psfhosted.org>
In-reply-to
Content
On Python 3.8.0:

$ python -c "import logging.handlers, socket; handler = logging.handlers.SysLogHandler(facility=logging.handlers.SysLogHandler.LOG_LOCAL7, address='/dev/log', socktype=socket.SOCK_RAW)"                                                     
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/logging/__init__.py", line 2112, in shutdown
    h.close()
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/logging/handlers.py", line 892, in close
    self.socket.close()
AttributeError: 'SysLogHandler' object has no attribute 'socket'

Probably that shouldn't happen.
History
Date User Action Args
2019-11-12 17:26:09jaracosetrecipients: + jaraco
2019-11-12 17:26:09jaracosetmessageid: <1573579569.01.0.575609345468.issue38780@roundup.psfhosted.org>
2019-11-12 17:26:08jaracolinkissue38780 messages
2019-11-12 17:26:08jaracocreate