diff options
author | mircea-cosbuc <mircea-cosbuc@users.noreply.github.com> | 2017-06-12 06:43:41 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-06-12 06:43:41 (GMT) |
commit | b459f7482612d340b88b62edc024628595ec6337 (patch) | |
tree | 8a1a2804b922adc48302acb7b720cc69135f0c71 /Misc/NEWS | |
parent | 3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |