[issue33858] A typo in multiprocessing documentation

2018-06-19 Thread aruseni
aruseni added the comment: Thanks all! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33858] A typo in multiprocessing documentation

2018-06-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, I've backported to 3.6 in https://github.com/python/cpython/pull/7721 -- components: +Library (Lib) resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker

[issue33858] A typo in multiprocessing documentation

2018-06-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: And this PR: https://github.com/python/cpython/pull/698 -- ___ Python tracker ___ ___

[issue33858] A typo in multiprocessing documentation

2018-06-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: It seems that it was this commit: https://github.com/python/cpython/commit/5619ab2db3a6c62ffaa55e8826cf67b7459fc484 -- ___ Python tracker

[issue33858] A typo in multiprocessing documentation

2018-06-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: Doc fixes are routinely backported, when valid, at least within 3.x. If this was not, I could either be intention or accident. If the change in master was with a github PR, maybe someone just forgot the backport label. Is the change in 3.7? Can either of

[issue33858] A typo in multiprocessing documentation

2018-06-14 Thread aruseni
aruseni added the comment: I just took a look at the most recent version of this file, and found out that this has already been fixed. https://github.com/python/cpython/blob/master/Doc/library/multiprocessing.rst -- ___ Python tracker

[issue33858] A typo in multiprocessing documentation

2018-06-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Could you make a PR correcting this bug? If you cannot I can do it instead. :) -- nosy: +pablogsal ___ Python tracker ___

[issue33858] A typo in multiprocessing documentation

2018-06-14 Thread aruseni
New submission from aruseni : https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods > locks created using the fork context cannot be passed to a processes started > using the spawn or forkserver start methods -- assignee: docs@python components: