src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/__init__.py

branch
eric7
changeset 9376
e143a7e7254b
parent 9221
bf71ee032bb4
child 9593
89f885d857e4
equal deleted inserted replaced
9375:e21b51a3d990 9376:e143a7e7254b
29 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 """ 32 """
33 33
34 __version__ = "2.4.0" 34 __version__ = "2.5.0"
35
36 """
37 pyflakes repository date: 2021-10-06.
38 """
39 35
40 """ Changes 36 """ Changes
37 2.5.0 (2022-07-30)
38
39 - Drop support for EOL python 2.7 / 3.4 / 3.5
40 - Ignore ``__all__`` when not directly assigned
41 - Handle ``TypeAlias`` annotations as aliases (PEP 613)
42 - Assignment expressions (``:=``) target outer scope in comprehensions
43 - Add support for new python 3.11 syntax
44 - Unify output so it is always ``filename:lineno:col: message``
45 - Properly report ``SyntaxError`` from stdin in python < 3.9
46 - Fix offsets of ``SyntaxError``s in pypy
47
41 2.4.0 (2021-10-06) 48 2.4.0 (2021-10-06)
42 49
43 - Remove unused tracing code (``traceTree``) 50 - Remove unused tracing code (``traceTree``)
44 - Add support for ``match`` statement 51 - Add support for ``match`` statement
45 - Detect ``typing`` module attributes when imported with ``import ... as ...`` 52 - Detect ``typing`` module attributes when imported with ``import ... as ...``

eric ide

mercurial