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 tim_magee
Recipients paul.moore, steve.dower, tim.golden, tim_magee, zach.ware
Date 2021-03-01.16:06:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614614810.34.0.707081949692.issue43348@roundup.psfhosted.org>
In-reply-to
Content
After a peep at the source I theorised that using logRequests=False when constructing the base class, SimpleXMLRPCServer. would see me right, and so it did.

When logRequests is True control ultimately passes to BaseHTTPRequestHandler.log_message which is a write to sys.stderr, meaning the code is unsuitable for running under pythonw.

This might be a special sort of https://bugs.python.org/issue38533 -- special because the code that offends pythonw is in the library.

Anyhow, now I know what the problem is I can work round it, and I'll leave it to you what to do with the ticket.
History
Date User Action Args
2021-03-01 16:06:50tim_mageesetrecipients: + tim_magee, paul.moore, tim.golden, zach.ware, steve.dower
2021-03-01 16:06:50tim_mageesetmessageid: <1614614810.34.0.707081949692.issue43348@roundup.psfhosted.org>
2021-03-01 16:06:50tim_mageelinkissue43348 messages
2021-03-01 16:06:50tim_mageecreate