diff options
author | Batuhan Taskaya <batuhanosmantaskaya@gmail.com> | 2020-11-11 07:14:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-11 07:14:12 (GMT) |
commit | fa476fe13255d0360f18528e864540d927560f66 (patch) | |
tree | db892dd4a66612b9ab5b7dd41d3bed49b918f66f /Misc | |
parent | 95ce7cd0a64e7f4739af2d1c158ef69b6980f12a (diff) | |
download | cpython-fa476fe13255d0360f18528e864540d927560f66.zip cpython-fa476fe13255d0360f18528e864540d927560f66.tar.gz cpython-fa476fe13255d0360f18528e864540d927560f66.tar.bz2 |
bpo-39411: pyclbr rewrite on AST (#18103)
- Rewrite pyclbr using an AST processor
- Add is_async to the pyclbr.Function
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-01-21-16-38-25.bpo-39411.9uHFqT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-21-16-38-25.bpo-39411.9uHFqT.rst b/Misc/NEWS.d/next/Library/2020-01-21-16-38-25.bpo-39411.9uHFqT.rst new file mode 100644 index 0000000..2377eef --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-01-21-16-38-25.bpo-39411.9uHFqT.rst @@ -0,0 +1,2 @@ +Add an ``is_async`` identifier to :mod:`pyclbr`'s ``Function`` objects. +Patch by Batuhan Taskaya |