Plugins/CheckerPlugins/SyntaxChecker/pyflakes/__init__.py

branch
BgService
changeset 3159
02cb2adb4868
parent 2571
e6bb19eb87ea
child 3177
5af61402d74d
equal deleted inserted replaced
3146:14721e0f3b5b 3159:02cb2adb4868
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Package containg the pyflakes Python2 port adapted for Qt.
8 """
9
10 """ License
11 Copyright 2005-2011 Divmod, Inc.
12 Copyright 2013 Florent Xicluna
13
14 Permission is hereby granted, free of charge, to any person obtaining
15 a copy of this software and associated documentation files (the
16 "Software"), to deal in the Software without restriction, including
17 without limitation the rights to use, copy, modify, merge, publish,
18 distribute, sublicense, and/or sell copies of the Software, and to
19 permit persons to whom the Software is furnished to do so, subject to
20 the following conditions:
21
22 The above copyright notice and this permission notice shall be
23 included in all copies or substantial portions of the Software.
24
25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
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
31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 """
33
34 """ Changes
35 0.6.1 (2013-01-29):
36 - Fix detection of variables in augmented assignments.
37
38 0.6.0 (2013-01-29):
39 - Support Python 3 up to 3.3, based on the pyflakes3k project.
40 - Preserve compatibility with Python 2.5 and all recent versions of Python.
41 - Support custom reporters in addition to the default Reporter.
42 - Allow function redefinition for modern property construction via
43 property.setter/deleter.
44 - Fix spurious redefinition warnings in conditionals.
45 - Do not report undefined name in __all__ if import * is used.
46 - Add WindowsError as a known built-in name on all platforms.
47 - Support specifying additional built-ins in the `Checker` constructor.
48 - Don't issue Unused Variable warning when using locals() in current scope.
49 - Handle problems with the encoding of source files.
50 - Remove dependency on Twisted for the tests.
51 - Support `python setup.py test` and `python setup.py develop`.
52 - Create script using setuptools `entry_points` to support all platforms,
53 including Windows.
54
55 0.5.0 (2011-09-02):
56 - Convert pyflakes to use newer _ast infrastructure rather than compiler.
57 - Support for new syntax in 2.7 (including set literals, set comprehensions,
58 and dictionary comprehensions).
59 - Make sure class names don't get bound until after class definition.
60 """
61
62 __version__ = '0.6.1'

eric ide

mercurial