| commit | 2a37f8f55b543589cc77a67b5cd17cbd9d0311c9 | [log] [tgz] |
|---|---|---|
| author | Dan Rose <rotu@users.noreply.github.com> | Fri May 24 06:38:01 2019 -0500 |
| committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Fri May 24 04:38:01 2019 -0700 |
| tree | 7bf4242f52dd92ffb0c8a731fe7d2e0f1864556e | |
| parent | cf7d5ef49b1d28f35af137d23ec1a94f3eae090d [diff] |
bpo-36045: builtins.help() now prefixes `async` for async functions (GH-12010) Previously, it was hard to tell whether a function should be awaited. It was also incorrect (per PEP 484) to put this in the type hint for coroutine functions. Added this info to the output of builtins.help and pydoc. https://bugs.python.org/issue36045