diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2021-08-18 10:28:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 17:28:49 +0200 |
commit | 53da6541dbe621b55f2c7f1bfcf821541dc823e8 (patch) | |
tree | 3f6f98aa51b609a177f975992baab14ef6839cd8 /doc | |
parent | f78a35afb76c38f4141714130bbd1a35ee430ea1 (diff) | |
download | pylint-git-53da6541dbe621b55f2c7f1bfcf821541dc823e8.tar.gz |
Add extension check against use of while loops (#4860)
* Move stray functional tests
* Clean up some while loops
* Add extension check against use of while loops
Diffstat (limited to 'doc')
-rw-r--r-- | doc/whatsnew/2.10.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/2.10.rst b/doc/whatsnew/2.10.rst index e8a354a05..501c9156a 100644 --- a/doc/whatsnew/2.10.rst +++ b/doc/whatsnew/2.10.rst @@ -24,6 +24,10 @@ New checkers Closes #4365 +* Added optional extension ``while_used``: Emitted whenever a ``while`` loop is used. + + Closes # 4367 + * Added ``forgotten-debug-statement``: Emitted when ``breakpoint``, ``pdb.set_trace`` or ``sys.breakpointhook`` calls are found Closes #3692 |