From: Jason R. Coombs Date: Wed, 24 Feb 2016 13:50:59 +0000 (-0500) Subject: Issue #26302: merge from 3.5 X-Git-Tag: v3.6.0a1~576 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b118870490dd62e0706e8e610e99115c20e02bff;p=python Issue #26302: merge from 3.5 --- b118870490dd62e0706e8e610e99115c20e02bff diff --cc Misc/NEWS index 546c295ef3,a0ccaef865..3e2b113a87 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,15 -10,9 +10,18 @@@ Release date: tb Core and Builtins ----------------- + - Issue #26302: Correct behavior to reject comma as a legal character for + cookie names. + +- Issue #26136: Upgrade the warning when a generator raises StopIteration + from PendingDeprecationWarning to DeprecationWarning. Patch by Anish + Shah. + +- Issue #26204: The compiler now ignores all constant statements: bytes, str, + int, float, complex, name constants (None, False, True), Ellipsis + and ast.Constant; not only str and int. For example, ``1.0`` is now ignored + in ``def f(): 1.0``. + - Issue #4806: Avoid masking the original TypeError exception when using star (*) unpacking in function calls. Based on patch by Hagen Fürstenau and Daniel Urban.