summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authormircea-cosbuc <mircea-cosbuc@users.noreply.github.com>2017-06-12 06:43:41 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-06-12 06:43:41 (GMT)
commitb459f7482612d340b88b62edc024628595ec6337 (patch)
tree8a1a2804b922adc48302acb7b720cc69135f0c71 /Misc/NEWS
parent3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4 (diff)
downloadcpython-b459f7482612d340b88b62edc024628595ec6337.zip
cpython-b459f7482612d340b88b62edc024628595ec6337.tar.gz
cpython-b459f7482612d340b88b62edc024628595ec6337.tar.bz2
[email] bpo-29478: Fix passing max_line_length=None from Compat32 policy (GH-595)
If max_line_length=None is specified while using the Compat32 policy, it is no longer ignored.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 98d8ef9..88f1631 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -142,6 +142,9 @@ Core and Builtins
- bpo-29546: Improve from-import error message with location
+- bpo-29478: If max_line_length=None is specified while using the Compat32 policy,
+ it is no longer ignored. Patch by Mircea Cosbuc.
+
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
- Issue #29337: Fixed possible BytesWarning when compare the code objects.