Pycodestyle Versions Save

Simple Python style checker in one Python file

1.7.1

6 years ago

This will be the final release of the pep8 package, all future usage should be of the pycodestyle package instead (version 2.x + of this repository).

Changes:

  • Prominently note via warning message that the tool is no longer released as pep8 and will only be fixed in the pycodestyle package

2.3.1

6 years ago

Bugs:

  • Fix regression in detection of E302 and E306; #618, #620

2.3.0

6 years ago

New Checks:

  • Add E722 warning for bare except clauses
  • Report E704 for async function definitions (async def)

Bugs:

  • Fix another E305 false positive for variables beginning with "class" or "def"
  • Fix detection of multiple spaces betwen async and def
  • Fix handling of variable annotations. Stop reporting E701 on Python 3.6 for variable annotations.

2.2.0

7 years ago

Announcements:

  • Added Make target to obtain proper tarball file permissions; #599

Bugs:

  • Fixed E305 regression caused by #400; #593