Add changelog entries for E704 and E731
authorFlorent Xicluna <florent.xicluna@gmail.com>
Thu, 29 May 2014 17:20:14 +0000 (19:20 +0200)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Thu, 29 May 2014 17:20:14 +0000 (19:20 +0200)
CHANGES.txt
pep8.py

index d3daac824d11f145efc76cebde393e4f8702e09b..d7c09b9bb464c00d630350ba21cdee7146142387 100644 (file)
@@ -2,6 +2,14 @@ Changelog
 =========
 
 
+1.x (unreleased)
+----------------
+
+* Report E731 for lambda assignment. (Issue #277)
+
+* Report E704 for one-liner def instead of E701. (Issue #277)
+
+
 1.5.7 (2014-05-29)
 ------------------
 
diff --git a/pep8.py b/pep8.py
index 69b594c8d7c9cebff7649997d8a45f6cf9c2cb54..bf30de6c0f517c4e8e4a2d5dabf1437a2de79c08 100755 (executable)
--- a/pep8.py
+++ b/pep8.py
@@ -46,7 +46,7 @@ W warnings
 """
 from __future__ import with_statement
 
-__version__ = '1.5.7'
+__version__ = '1.6.0a0'
 
 import os
 import sys