Skip to content

Commit

Permalink
Fix typo "__aiter()__" + add missing dot (#3168)
Browse files Browse the repository at this point in the history
  • Loading branch information
rutsky authored and asvetlov committed Aug 1, 2018
1 parent e561eaa commit cf3a384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ other resource you want to share between handlers.
Why is Python 3.5.3 the lowest supported version?
-------------------------------------------------

Python 3.5.2 fixes the protocol for async iterators: ``__aiter()__`` is
Python 3.5.2 fixes the protocol for async iterators: ``__aiter__()`` is
not a coroutine but a regular function.

Python 3.5.3 has a more important change: :func:`asyncio.get_event_loop`
returns the running loop instance if called from a coroutine
returns the running loop instance if called from a coroutine.
Previously it returned a *default* loop, set by
:func:`asyncio.set_event_loop`.

Expand Down

0 comments on commit cf3a384

Please sign in to comment.