[issue33082] multiprocessing docs bury very important 'callback=' args

2019-09-13 Thread Davin Potts
Davin Potts added the comment: I appreciate the functionality offered by the callbacks and have found good uses for them, as Chad clearly does/has. That said, the thought of expanding the documentation on the callbacks had not come up for me. Reading through the proposed changes to the

[issue33082] multiprocessing docs bury very important 'callback=' args

2019-09-13 Thread Julien Palard
Julien Palard added the comment: I agree Antoine on this one, if one want the result, It'll get it from the returned value (.get method in the example), or simply by using the not-async versions and directly get the results as a return value of the call. Also the given example in the

[issue33082] multiprocessing docs bury very important 'callback=' args

2019-09-13 Thread Julien Palard
Julien Palard added the comment: I'd wait for Davin's review, but I'd keep the documentation as they are. -- ___ Python tracker ___

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-06-08 Thread Ned Deily
Ned Deily added the comment: These doc changes have been languishing. We have a difference of opinion about adding a callback example. I don't have a strong feeling one way or the other. Davin or anyone else, what say you? -- nosy: +ned.deily

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-04-11 Thread Chad
Change by Chad : -- pull_requests: +6150 ___ Python tracker ___ ___ Python-bugs-list

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-22 Thread Chad
Chad added the comment: On topic: My CLA is signed as of Monday, 19 March. My status here is not updated yet. pitrou, off-topic: Without callbacks, users who want multiprocessing functions to return something, not just mutate state somewhere else, must gather jobs in a

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't really agree that "callbacks are really important in multiprocessing" (I think I've hardly ever used them). I agree with the other doc changes in the PR. -- ___ Python tracker

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Chad
Change by Chad : -- keywords: +patch pull_requests: +5886 stage: -> patch review ___ Python tracker ___

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- versions: -Python 3.4, Python 3.5 ___ Python tracker ___

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Can you make your PR in python/cpython GitHub repo, instead of your own fork? -- nosy: +Mariatta ___ Python tracker

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Chad
Chad added the comment: https://github.com/chadmiller-amzn/cpython/pull/1 (Putting that in "GitHub PR" field says "Edit Error: Unknown PR format, acceptable formats are: full github URL, #pr_number, pr_number") -- versions: +Python 3.4, Python 3.5

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou versions: -Python 3.4, Python 3.5 ___ Python tracker ___

[issue33082] multiprocessing docs bury very important 'callback=' args

2018-03-15 Thread Chad
New submission from Chad : Callbacks are really important in multiprocessing. Doc writer almost ignores them. -- assignee: docs@python components: Documentation messages: 313905 nosy: chadmiller-amzn, docs@python priority: normal severity: normal status: open