Rename check to signify that it applies to module level imports only; issue #304
[third_party/pep8] / CHANGES.txt
1 Changelog
2 =========
3
4
5 1.x (unreleased)
6 ----------------
7
8 News:
9
10 * Ian Lee <ianlee1521@gmail.com> joined the project as a maintainer.
11
12 Bug fixes:
13
14 * Report E731 for lambda assignment. (Issue #277)
15
16 * Report E704 for one-liner def instead of E701.
17   Do not report this error in the default configuration. (Issue #277)
18
19 * Replace codes E111, E112 and E113 with codes E114, E115 and E116
20   for bad indentation of comments. (Issue #274)
21
22 * Report E266 instead of E265 when the block comment starts with
23   multiple ``#``. (Issue #270)
24
25 * Strip whitespace from around paths during normalization. (Issue #339 / #343)
26
27 * Update ``--format`` documentation. (Issue #198 / Pull Request #310)
28
29 * Don't crash if Checker.build_tokens_line() returns None. (Issue #306)
30
31 * Add ``.tox/`` to default excludes. (Issue #335)
32
33 * Report E402 for import statements not at the top of the file. (Issue #264)
34
35
36 1.5.7 (2014-05-29)
37 ------------------
38
39 Bug fixes:
40
41 * Skip the traceback on "Broken pipe" signal. (Issue #275)
42
43 * Do not exit when an option in ``setup.cfg`` or ``tox.ini``
44   is not recognized.
45
46 * Check the last line even if it does not end with a newline. (Issue #286)
47
48 * Always open files in universal newlines mode in Python 2. (Issue #288)
49
50
51 1.5.6 (2014-04-14)
52 ------------------
53
54 Bug fixes:
55
56 * Check the last line even if it has no end-of-line. (Issue #273)
57
58
59 1.5.5 (2014-04-10)
60 ------------------
61
62 Bug fixes:
63
64 * Fix regression with E22 checks and inline comments. (Issue #271)
65
66
67 1.5.4 (2014-04-07)
68 ------------------
69
70 Bug fixes:
71
72 * Fix negative offset with E303 before a multi-line docstring.
73   (Issue #269)
74
75
76 1.5.3 (2014-04-04)
77 ------------------
78
79 Bug fixes:
80
81 * Fix wrong offset computation when error is on the last char
82   of a physical line. (Issue #268)
83
84
85 1.5.2 (2014-04-04)
86 ------------------
87
88 Changes:
89
90 * Distribute a universal wheel file.
91
92 Bug fixes:
93
94 * Report correct line number for E303 with comments. (Issue #60)
95
96 * Do not allow newline after parameter equal. (Issue #252)
97
98 * Fix line number reported for multi-line strings. (Issue #220)
99
100 * Fix false positive E121/E126 with multi-line strings. (Issue #265)
101
102 * Fix E501 not detected in comments with Python 2.5.
103
104 * Fix caret position with ``--show-source`` when line contains tabs.
105
106
107 1.5.1 (2014-03-27)
108 ------------------
109
110 Bug fixes:
111
112 * Fix a crash with E125 on multi-line strings. (Issue #263)
113
114
115 1.5 (2014-03-26)
116 ----------------
117
118 Changes:
119
120 * Report E129 instead of E125 for visually indented line with same
121   indent as next logical line.  (Issue #126)
122
123 * Report E265 for space before block comment. (Issue #190)
124
125 * Report E713 and E714 when operators ``not in`` and ``is not`` are
126   recommended. (Issue #236)
127
128 * Allow long lines in multiline strings and comments if they cannot
129   be wrapped. (Issue #224).
130
131 * Optionally disable physical line checks inside multiline strings,
132   using ``# noqa``. (Issue #242)
133
134 * Change text for E121 to report "continuation line under-indented
135   for hanging indent" instead of indentation not being a
136   multiple of 4.
137
138 * Report E131 instead of E121 / E126 if the hanging indent is not
139   consistent within the same continuation block.  It helps when
140   error E121 or E126 is in the ``ignore`` list.
141
142 * Report E126 instead of E121 when the continuation line is hanging
143   with extra indentation, even if indentation is not a multiple of 4.
144
145 Bug fixes:
146
147 * Allow the checkers to report errors on empty files. (Issue #240)
148
149 * Fix ignoring too many checks when ``--select`` is used with codes
150   declared in a flake8 extension. (Issue #216)
151
152 * Fix regression with multiple brackets. (Issue #214)
153
154 * Fix ``StyleGuide`` to parse the local configuration if the
155   keyword argument ``paths`` is specified. (Issue #246)
156
157 * Fix a false positive E124 for hanging indent. (Issue #254)
158
159 * Fix a false positive E126 with embedded colon. (Issue #144)
160
161 * Fix a false positive E126 when indenting with tabs. (Issue #204)
162
163 * Fix behaviour when ``exclude`` is in the configuration file and
164   the current directory is not the project directory. (Issue #247)
165
166 * The logical checks can return ``None`` instead of an empty iterator.
167   (Issue #250)
168
169 * Do not report multiple E101 if only the first indentation starts
170   with a tab. (Issue #237)
171
172 * Fix a rare false positive W602. (Issue #34)
173
174
175 1.4.6 (2013-07-02)
176 ------------------
177
178 Changes:
179
180 * Honor ``# noqa`` for errors E711 and E712. (Issue #180)
181
182 * When both a ``tox.ini`` and a ``setup.cfg`` are present in the project
183   directory, merge their contents.  The ``tox.ini`` file takes
184   precedence (same as before). (Issue #182)
185
186 * Give priority to ``--select`` over ``--ignore``. (Issue #188)
187
188 * Compare full path when excluding a file. (Issue #186)
189
190 * New option ``--hang-closing`` to switch to the alternative style of
191   closing bracket indentation for hanging indent.  Add error E133 for
192   closing bracket which is missing indentation. (Issue #103)
193
194 * Accept both styles of closing bracket indentation for hanging indent.
195   Do not report error E123 in the default configuration. (Issue #103)
196
197 Bug fixes:
198
199 * Do not crash when running AST checks and the document contains null bytes.
200   (Issue #184)
201
202 * Correctly report other E12 errors when E123 is ignored. (Issue #103)
203
204 * Fix false positive E261/E262 when the file contains a BOM. (Issue #193)
205
206 * Fix E701, E702 and E703 not detected sometimes. (Issue #196)
207
208 * Fix E122 not detected in some cases. (Issue #201 and #208)
209
210 * Fix false positive E121 with multiple brackets. (Issue #203)
211
212
213 1.4.5 (2013-03-06)
214 ------------------
215
216 * When no path is specified, do not try to read from stdin.  The feature
217   was added in 1.4.3, but it is not supported on Windows.  Use ``-``
218   filename argument to read from stdin.  This usage is supported
219   since 1.3.4. (Issue #170)
220
221 * Do not require ``setuptools`` in setup.py.  It works around an issue
222   with ``pip`` and Python 3. (Issue #172)
223
224 * Add ``__pycache__`` to the ignore list.
225
226 * Change misleading message for E251. (Issue #171)
227
228 * Do not report false E302 when the source file has a coding cookie or a
229   comment on the first line. (Issue #174)
230
231 * Reorganize the tests and add tests for the API and for the command line
232   usage and options. (Issues #161 and #162)
233
234 * Ignore all checks which are not explicitly selected when ``select`` is
235   passed to the ``StyleGuide`` constructor.
236
237
238 1.4.4 (2013-02-24)
239 ------------------
240
241 * Report E227 or E228 instead of E225 for whitespace around bitwise, shift
242   or modulo operators. (Issue #166)
243
244 * Change the message for E226 to make clear that it is about arithmetic
245   operators.
246
247 * Fix a false positive E128 for continuation line indentation with tabs.
248
249 * Fix regression with the ``--diff`` option. (Issue #169)
250
251 * Fix the ``TestReport`` class to print the unexpected warnings and
252   errors.
253
254
255 1.4.3 (2013-02-22)
256 ------------------
257
258 * Hide the ``--doctest`` and ``--testsuite`` options when installed.
259
260 * Fix crash with AST checkers when the syntax is invalid. (Issue #160)
261
262 * Read from standard input if no path is specified.
263
264 * Initiate a graceful shutdown on ``Control+C``.
265
266 * Allow to change the ``checker_class`` for the ``StyleGuide``.
267
268
269 1.4.2 (2013-02-10)
270 ------------------
271
272 * Support AST checkers provided by third-party applications.
273
274 * Register new checkers with ``register_check(func_or_cls, codes)``.
275
276 * Allow to construct a ``StyleGuide`` with a custom parser.
277
278 * Accept visual indentation without parenthesis after the ``if``
279   statement. (Issue #151)
280
281 * Fix UnboundLocalError when using ``# noqa`` with continued lines.
282   (Issue #158)
283
284 * Re-order the lines for the ``StandardReport``.
285
286 * Expand tabs when checking E12 continuation lines. (Issue #155)
287
288 * Refactor the testing class ``TestReport`` and the specific test
289   functions into a separate test module.
290
291
292 1.4.1 (2013-01-18)
293 ------------------
294
295 * Allow sphinx.ext.autodoc syntax for comments. (Issue #110)
296
297 * Report E703 instead of E702 for the trailing semicolon. (Issue #117)
298
299 * Honor ``# noqa`` in addition to ``# nopep8``. (Issue #149)
300
301 * Expose the ``OptionParser`` factory for better extensibility.
302
303
304 1.4 (2012-12-22)
305 ----------------
306
307 * Report E226 instead of E225 for optional whitespace around common
308   operators (``*``, ``**``, ``/``, ``+`` and ``-``).  This new error
309   code is ignored in the default configuration because PEP 8 recommends
310   to "use your own judgement". (Issue #96)
311
312 * Lines with a ``# nopep8`` at the end will not issue errors on line
313   length E501 or continuation line indentation E12*. (Issue #27)
314
315 * Fix AssertionError when the source file contains an invalid line
316   ending ``"\r\r\n"``. (Issue #119)
317
318 * Read the ``[pep8]`` section of ``tox.ini`` or ``setup.cfg`` if present.
319   (Issue #93 and #141)
320
321 * Add the Sphinx-based documentation, and publish it
322   on http://pep8.readthedocs.org/. (Issue #105)
323
324
325 1.3.4 (2012-12-18)
326 ------------------
327
328 * Fix false positive E124 and E128 with comments. (Issue #100)
329
330 * Fix error on stdin when running with bpython. (Issue #101)
331
332 * Fix false positive E401. (Issue #104)
333
334 * Report E231 for nested dictionary in list. (Issue #142)
335
336 * Catch E271 at the beginning of the line. (Issue #133)
337
338 * Fix false positive E126 for multi-line comments. (Issue #138)
339
340 * Fix false positive E221 when operator is preceded by a comma. (Issue #135)
341
342 * Fix ``--diff`` failing on one-line hunk. (Issue #137)
343
344 * Fix the ``--exclude`` switch for directory paths. (Issue #111)
345
346 * Use ``-`` filename to read from standard input. (Issue #128)
347
348
349 1.3.3 (2012-06-27)
350 ------------------
351
352 * Fix regression with continuation line checker. (Issue #98)
353
354
355 1.3.2 (2012-06-26)
356 ------------------
357
358 * Revert to the previous behaviour for ``--show-pep8``:
359   do not imply ``--first``. (Issue #89)
360
361 * Add E902 for IO errors. (Issue #87)
362
363 * Fix false positive for E121, and missed E124. (Issue #92)
364
365 * Set a sensible default path for config file on Windows. (Issue #95)
366
367 * Allow ``verbose`` in the configuration file. (Issue #91)
368
369 * Show the enforced ``max-line-length`` in the error message. (Issue #86)
370
371
372 1.3.1 (2012-06-18)
373 ------------------
374
375 * Explain which configuration options are expected.  Accept and recommend
376   the options names with hyphen instead of underscore. (Issue #82)
377
378 * Do not read the user configuration when used as a module
379   (except if ``config_file=True`` is passed to the ``StyleGuide`` constructor).
380
381 * Fix wrong or missing cases for the E12 series.
382
383 * Fix cases where E122 was missed. (Issue #81)
384
385
386 1.3 (2012-06-15)
387 ----------------
388
389 .. warning::
390    The internal API is backwards incompatible.
391
392 * Remove global configuration and refactor the library around
393   a ``StyleGuide`` class; add the ability to configure various
394   reporters. (Issue #35 and #66)
395
396 * Read user configuration from ``~/.config/pep8``
397   and local configuration from ``./.pep8``. (Issue #22)
398
399 * Fix E502 for backslash embedded in multi-line string. (Issue #68)
400
401 * Fix E225 for Python 3 iterable unpacking (PEP 3132). (Issue #72)
402
403 * Enable the new checkers from the E12 series in the default
404   configuration.
405
406 * Suggest less error-prone alternatives for E712 errors.
407
408 * Rewrite checkers to run faster (E22, E251, E27).
409
410 * Fixed a crash when parsed code is invalid (too many
411   closing brackets).
412
413 * Fix E127 and E128 for continuation line indentation. (Issue #74)
414
415 * New option ``--format`` to customize the error format. (Issue #23)
416
417 * New option ``--diff`` to check only modified code.  The unified
418   diff is read from STDIN.  Example: ``hg diff | pep8 --diff``
419   (Issue #39)
420
421 * Correctly report the count of failures and set the exit code to 1
422   when the ``--doctest`` or the ``--testsuite`` fails.
423
424 * Correctly detect the encoding in Python 3. (Issue #69)
425
426 * Drop support for Python 2.3, 2.4 and 3.0. (Issue #78)
427
428
429 1.2 (2012-06-01)
430 ----------------
431
432 * Add E121 through E128 for continuation line indentation.  These
433   checks are disabled by default.  If you want to force all checks,
434   use switch ``--select=E,W``.  Patch by Sam Vilain. (Issue #64)
435
436 * Add E721 for direct type comparisons. (Issue #47)
437
438 * Add E711 and E712 for comparisons to singletons. (Issue #46)
439
440 * Fix spurious E225 and E701 for function annotations. (Issue #29)
441
442 * Add E502 for explicit line join between brackets.
443
444 * Fix E901 when printing source with ``--show-source``.
445
446 * Report all errors for each checker, instead of reporting only the
447   first occurrence for each line.
448
449 * Option ``--show-pep8`` implies ``--first``.
450
451
452 1.1 (2012-05-24)
453 ----------------
454
455 * Add E901 for syntax errors. (Issues #63 and #30)
456
457 * Add E271, E272, E273 and E274 for extraneous whitespace around
458   keywords. (Issue #57)
459
460 * Add ``tox.ini`` configuration file for tests. (Issue #61)
461
462 * Add ``.travis.yml`` configuration file for continuous integration.
463   (Issue #62)
464
465
466 1.0.1 (2012-04-06)
467 ------------------
468
469 * Fix inconsistent version numbers.
470
471
472 1.0 (2012-04-04)
473 ----------------
474
475 * Fix W602 ``raise`` to handle multi-char names. (Issue #53)
476
477
478 0.7.0 (2012-03-26)
479 ------------------
480
481 * Now ``--first`` prints only the first occurrence of each error.
482   The ``--repeat`` flag becomes obsolete because it is the default
483   behaviour. (Issue #6)
484
485 * Allow to specify ``--max-line-length``. (Issue #36)
486
487 * Make the shebang more flexible. (Issue #26)
488
489 * Add testsuite to the bundle. (Issue #25)
490
491 * Fixes for Jython. (Issue #49)
492
493 * Add PyPI classifiers. (Issue #43)
494
495 * Fix the ``--exclude`` option. (Issue #48)
496
497 * Fix W602, accept ``raise`` with 3 arguments. (Issue #34)
498
499 * Correctly select all tests if ``DEFAULT_IGNORE == ''``.
500
501
502 0.6.1 (2010-10-03)
503 ------------------
504
505 * Fix inconsistent version numbers. (Issue #21)
506
507
508 0.6.0 (2010-09-19)
509 ------------------
510
511 * Test suite reorganized and enhanced in order to check more failures
512   with fewer test files.  Read the ``run_tests`` docstring for details
513   about the syntax.
514
515 * Fix E225: accept ``print >>sys.stderr, "..."`` syntax.
516
517 * Fix E501 for lines containing multibyte encoded characters. (Issue #7)
518
519 * Fix E221, E222, E223, E224 not detected in some cases. (Issue #16)
520
521 * Fix E211 to reject ``v = dic['a'] ['b']``. (Issue #17)
522
523 * Exit code is always 1 if any error or warning is found. (Issue #10)
524
525 * ``--ignore`` checks are now really ignored, especially in
526   conjunction with ``--count``. (Issue #8)
527
528 * Blank lines with spaces yield W293 instead of W291: some developers
529   want to ignore this warning and indent the blank lines to paste their
530   code easily in the Python interpreter.
531
532 * Fix E301: do not require a blank line before an indented block. (Issue #14)
533
534 * Fix E203 to accept NumPy slice notation ``a[0, :]``. (Issue #13)
535
536 * Performance improvements.
537
538 * Fix decoding and checking non-UTF8 files in Python 3.
539
540 * Fix E225: reject ``True+False`` when running on Python 3.
541
542 * Fix an exception when the line starts with an operator.
543
544 * Allow a new line before closing ``)``, ``}`` or ``]``. (Issue #5)
545
546
547 0.5.0 (2010-02-17)
548 ------------------
549
550 * Changed the ``--count`` switch to print to sys.stderr and set
551   exit code to 1 if any error or warning is found.
552
553 * E241 and E242 are removed from the standard checks. If you want to
554   include these checks, use switch ``--select=E,W``. (Issue #4)
555
556 * Blank line is not mandatory before the first class method or nested
557   function definition, even if there's a docstring. (Issue #1)
558
559 * Add the switch ``--version``.
560
561 * Fix decoding errors with Python 3. (Issue #13 [1]_)
562
563 * Add ``--select`` option which is mirror of ``--ignore``.
564
565 * Add checks E261 and E262 for spaces before inline comments.
566
567 * New check W604 warns about deprecated usage of backticks.
568
569 * New check W603 warns about the deprecated operator ``<>``.
570
571 * Performance improvement, due to rewriting of E225.
572
573 * E225 now accepts:
574
575   - no whitespace after unary operator or similar. (Issue #9 [1]_)
576
577   - lambda function with argument unpacking or keyword defaults.
578
579 * Reserve "2 blank lines" for module-level logical blocks. (E303)
580
581 * Allow multi-line comments. (E302, issue #10 [1]_)
582
583
584 0.4.2 (2009-10-22)
585 ------------------
586
587 * Decorators on classes and class methods are OK now.
588
589
590 0.4 (2009-10-20)
591 ----------------
592
593 * Support for all versions of Python from 2.3 to 3.1.
594
595 * New and greatly expanded self tests.
596
597 * Added ``--count`` option to print the total number of errors and warnings.
598
599 * Further improvements to the handling of comments and blank lines.
600   (Issue #1 [1]_ and others changes.)
601
602 * Check all py files in directory when passed a directory (Issue
603   #2 [1]_). This also prevents an exception when traversing directories
604   with non ``*.py`` files.
605
606 * E231 should allow commas to be followed by ``)``. (Issue #3 [1]_)
607
608 * Spaces are no longer required around the equals sign for keyword
609   arguments or default parameter values.
610
611
612 .. [1] These issues refer to the `previous issue tracker`__.
613 .. __:  http://github.com/cburroughs/pep8.py/issues
614
615
616 0.3.1 (2009-09-14)
617 ------------------
618
619 * Fixes for comments: do not count them when checking for blank lines between
620   items.
621
622 * Added setup.py for pypi upload and easy_installability.
623
624
625 0.2 (2007-10-16)
626 ----------------
627
628 * Loads of fixes and improvements.
629
630
631 0.1 (2006-10-01)
632 ----------------
633
634 * First release.