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 AlexWells
Recipients AlexWells, docs@python
Date 2021-10-25.14:34:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635172489.58.0.649582586734.issue45604@roundup.psfhosted.org>
In-reply-to
Content
The documentation for multiprocessing.log_to_stderr() specifies that the method takes no parameters. However, intellisense in VSCode and debugging the method both show that there is a single parameter, "level", whose default value is None. 
Documentation here:
https://docs.python.org/3.7/library/multiprocessing.html#multiprocessing.log_to_stderr

The parameter appears to be a shorthand to allow you to both get the logger and specify the required log level in one step, rather than two. The code that handles the "level" parameter appears to do what I'd expect it to do.

I think the documentation simply needs a few words written about the parameter.

Thanks.
History
Date User Action Args
2021-10-25 14:34:49AlexWellssetrecipients: + AlexWells, docs@python
2021-10-25 14:34:49AlexWellssetmessageid: <1635172489.58.0.649582586734.issue45604@roundup.psfhosted.org>
2021-10-25 14:34:49AlexWellslinkissue45604 messages
2021-10-25 14:34:49AlexWellscreate