@@ -11,18 +11,25 @@ Release date: 2014-04-30
11
11
lines.
12
12
13
13
* Emit [assignment-from-none] when the function contains bare returns.
14
- Fixes BitBucket issue #191.
14
+
15
+ Closes BitBucket #191
15
16
16
17
* Added a new warning for closing over variables that are
17
- defined in loops. Fixes Bitbucket issue #176.
18
+ defined in loops.
19
+
20
+ Closes BitBucket #176
18
21
19
22
* Do not warn about \u escapes in string literals when Unicode literals
20
- are used for Python 2.*. Fixes BitBucket issue #151.
23
+ are used for Python 2.*.
24
+
25
+ Closes BitBucket #151
21
26
22
27
* Extend the checking for unbalanced-tuple-unpacking and
23
28
unpacking-non-sequence to instance attribute unpacking as well.
24
29
25
- * Fix explicit checking of python script (1.2 regression, #219)
30
+ * Fix explicit checking of python script (1.2 regression)
31
+
32
+ Closes #219
26
33
27
34
* Restore --init-hook, renamed accidentally into --init-hooks in 1.2.0
28
35
@@ -37,27 +44,34 @@ What's New in Pylint 1.2.0?
37
44
Release date: 2014-04-18
38
45
39
46
* Pass the current python paths to pylint process when invoked via
40
- epylint. Fixes BitBucket issue #133.
47
+ epylint.
48
+
49
+ Closes BitBucket #133.
41
50
42
51
* Add -i / --include-ids and -s / --symbols back as completely ignored
43
- options. Fixes BitBucket issue #180.
52
+ options.
53
+
54
+ Closes BitBucket #180.
55
+
56
+ * Extend the number of cases in which logging calls are detected.
44
57
45
- * Extend the number of cases in which logging calls are detected. Fixes
46
- bitbucket issue #182.
58
+ Closes BitBucket #182.
47
59
48
60
* Improve pragma handling to not detect pylint:* strings in non-comments.
49
- Fixes BitBucket issue #79.
61
+
62
+ Closes BitBucket #79.
50
63
51
64
* Do not crash with UnknownMessage if an unknown message ID/name appears
52
65
in disable or enable in the configuration. Patch by Cole Robinson.
53
- Fixes bitbucket issue #170.
54
66
55
- * Add new warning 'eval-used', checking that the builtin function ``eval ``
56
- was used.
67
+ Closes BitBucket #170
68
+
69
+ * Add new warning 'eval-used', checking that the builtin function ``eval `` was used.
57
70
58
71
* Make it possible to show a naming hint for invalid name by setting
59
- include-naming-hint. Also make the naming hints configurable. Fixes
60
- BitBucket issue #138.
72
+ include-naming-hint. Also make the naming hints configurable.
73
+
74
+ Closes BitBucket #138
61
75
62
76
* Added support for enforcing multiple, but consistent name styles for
63
77
different name types inside a single module; based on a patch written
@@ -78,18 +92,23 @@ Release date: 2014-04-18
78
92
Closes #166
79
93
80
94
* Python 2.5 support restored: fixed small issues preventing pylint to run
81
- on python 2.5. Bitbucket issues #50 and #62.
95
+ on python 2.5.
96
+
97
+ Closes BitBucket #50
98
+ Closes BitBucket #62
82
99
83
- * bitbucket #128: pylint doesn't crash when looking
84
- for used-before-assignment in context manager
85
- assignments.
100
+ * pylint doesn't crash when looking for used-before-assignment in context manager assignments.
101
+
102
+ Closes BitBucket #128
86
103
87
104
* Add new warning, 'bad-reversed-sequence', for checking that the
88
105
reversed() builtin receive a sequence (implements ``__getitem__ `` and ``__len__ ``,
89
106
without being a dict or a dict subclass) or an instance which implements
90
107
``__reversed__ ``.
91
108
92
- * Mark ``file `` as a bad function when using python2 (closes #8).
109
+ * Mark ``file `` as a bad function when using python2
110
+
111
+ Closes #8
93
112
94
113
* Add new warning 'bad-exception-context', checking
95
114
that ``raise ... from ... `` uses a proper exception context
@@ -99,7 +118,9 @@ Release date: 2014-04-18
99
118
for 'nonlocal' uses.
100
119
101
120
* Emit 'undefined-all-variable' if a package's __all__
102
- variable contains a missing submodule (closes #126).
121
+ variable contains a missing submodule.
122
+
123
+ Closes #126
103
124
104
125
* Add a new warning 'abstract-class-instantiated' for checking
105
126
that abstract classes created with ``abc `` module and
0 commit comments