[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi > There is no need to jumbo PR, you can split the work into PR-per-module if it > is more comfortable to you. Yes, I think that is better split I will try it. > I'm ok with reviewing any approach. Thanks! -- title: Deprecate explicit loop parameter

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thank you. The change is pretty straightforward. There is no need to jumbo PR, you can split the work into PR-per-module if it is more comfortable to you. I'm ok with reviewing any approach. -- ___ Python tracke

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: hello, I will work on it, if there are no objection. :-) -- ___ Python tracker ___ ___ Python-bug

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: A champion is welcome :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-28 Thread Matthias Bussonnier
Change by Matthias Bussonnier : -- nosy: +mbussonn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: > Yuri, I think we should deprecate explicit loop everywhere in non-deprecated > asyncio API by Python 3.8. +1 -- ___ Python tracker ___ __

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: *Passing* loop to gather should be deprecated. *Using* loop by *internal logic* is pretty fine, we do it in asyncio everywhere. Yuri, I think we should deprecate explicit loop everywhere in non-deprecated asyncio API by Python 3.8. We can do it even in Pyth

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-27 Thread dtrauma
dtrauma added the comment: Yes, exactly, document deprecation status XOR what it does :) -- ___ Python tracker ___ ___ Python-bugs-

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-27 Thread Emmanuel Arias
Emmanuel Arias added the comment: @dtrauma jus for clarify. You say that if loop is not deprecated document it else document it. Right? -- ___ Python tracker ___ __

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-27 Thread dtrauma
dtrauma added the comment: Just to be clear, I don't know if loop is deprecated on this function like on all the others, I just suspect it to be. But it currently is completely undocumented, which either way is a bug. :) -- ___ Python tracker

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, Reading the asyncio.gather code not seem to be deprecrated. loop is used on a lot of line of code. Maybe, the deprecate idea is on other place where I don't know. -- nosy: +eamanu ___ Python tracker

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___ ___ Python-bugs-list

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-03-19 Thread dtrauma
New submission from dtrauma : https://docs.python.org/3.7/library/asyncio-task.html#running-tasks-concurrently For asyncio.gather, the docs should probably say The loop argument is deprecated and scheduled for removal in Python 3.10. as they do for all the other loop arguments of other functi