summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-25 19:35:37 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-25 19:35:37 +0100
commitfed43c5b560c90995e2ea3f742f2bf6b6e497657 (patch)
tree9892f524f6a57381ee08004e4496babdc75ec26e /CHANGES.txt
parent5685c9799aa72a461d0b41a5ade2ceeb0341efeb (diff)
parentfd5cc44df54b0aeff605ccc62ed1e69fdb52c28b (diff)
downloadpep8-fed43c5b560c90995e2ea3f742f2bf6b6e497657.tar.gz
Merge. Allow long lines in docstrings and comments.
Allow long lines in multiline strings and comments if they cannot be wrapped; issue #224 Optionally disable physical line checks inside multiline strings, using '# noqa'; issue #242
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index fc79c00..82124be 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -15,6 +15,12 @@ Changes:
* Report E713 and E714 when operators ``not in`` and ``is not`` are
recommended. (Issue #236)
+* Allow long lines in multiline strings and comments if they cannot
+ be wrapped. (Issue #224).
+
+* Optionally disable physical line checks inside multiline strings,
+ using ``# noqa``. (Issue #242)
+
* Change text for E121 to report "continuation line under-indented
for hanging indent" instead of indentation not being a
multiple of 4.