We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 995da1d + 09cb6eb commit c22f1ebCopy full SHA for c22f1eb
README.rst
@@ -239,9 +239,20 @@ Change Log
239
19.3.0
240
~~~~~~
241
242
+* allow 'mcs' for metaclass classmethod first arg (PyCharm default)
243
+* Introduce B011
244
+* Introduce B009 and B010
245
+* Exclude immutable calls like tuple() and frozenset() from B008
246
* For B902, the first argument for metaclass class methods can be
247
"mcs", matching the name preferred by PyCharm.
248
249
+18.8.0
250
+~~~~~~
251
+
252
+* black format all .py files
253
+* Examine kw-only args for mutable defaults
254
+* Test for Python 3.7
255
256
18.2.0
257
258
bugbear.py
@@ -9,7 +9,7 @@
9
import pycodestyle
10
11
12
-__version__ = "18.8.0"
+__version__ = "19.3.0"
13
14
LOG = logging.getLogger("flake8.bugbear")
15
0 commit comments