[issue24487] Change asyncio.async() → ensure_future()

2015-06-30 Thread Yury Selivanov

Changes by Yury Selivanov yseliva...@gmail.com:


--
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-30 Thread Martin Panter

Martin Panter added the comment:

Reopening. The patch still applies to the current code (e.g. revision 
df310e5ac015, 30 June). It changes eight references of “async()” that still 
exist in this revision.

--
status: closed - open

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-30 Thread Yury Selivanov

Yury Selivanov added the comment:

Thanks, Martin!

--
resolution: out of date - fixed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-30 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 1b3be273e327 by Yury Selivanov in branch '3.5':
Issue #24487: Rename async() - ensure_future() in asyncio docs.
https://hg.python.org/cpython/rev/1b3be273e327

New changeset 3dc2a113e8a7 by Yury Selivanov in branch 'default':
Merge 3.5 (Issue #24487)
https://hg.python.org/cpython/rev/3dc2a113e8a7

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-22 Thread Yury Selivanov

Yury Selivanov added the comment:

Martin, I believe this was done as part of issue24180, see this commit 
https://hg.python.org/cpython/rev/9d9e445d25dc

--
resolution:  - not a bug
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-22 Thread Zachary Ware

Changes by Zachary Ware zachary.w...@gmail.com:


--
resolution: not a bug - out of date
stage: patch review - resolved

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-22 Thread Martin Panter

Martin Panter added the comment:

There are a few references left in that revision. For instance 
https://docs.python.org/3.5/library/asyncio-task.html#coroutines still 
suggests scheduling a coroutine by calling async(). But depending on the 
context this may cause a syntax error in 3.5, so I think it should suggest 
calling ensure_future() instead.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24487] Change asyncio.async() → ensure_future()

2015-06-22 Thread Martin Panter

New submission from Martin Panter:

The async() function is marked as deprecated in 3.4.4. This patch replaces most 
references to it with references to ensure_future(). The exception is 
https://docs.python.org/3.4/library/asyncio-eventloop.html#asyncio.BaseEventLoop.create_task,
 which suggests using it in Python  3.4.2.

--
assignee: docs@python
components: Documentation, asyncio
files: ensure_future.patch
keywords: patch
messages: 245631
nosy: docs@python, gvanrossum, haypo, vadmium, yselivanov
priority: normal
severity: normal
stage: patch review
status: open
title: Change asyncio.async() → ensure_future()
versions: Python 3.4, Python 3.5, Python 3.6
Added file: http://bugs.python.org/file39771/ensure_future.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24487
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com