]> granicus.if.org Git - python/commitdiff
whatsnew: removal of TYPE_INT64 from marshal.
authorR David Murray <rdmurray@bitdance.com>
Sun, 5 Jan 2014 02:17:52 +0000 (21:17 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sun, 5 Jan 2014 02:17:52 +0000 (21:17 -0500)
Also update news entry for SMTPException; when I changed it from
IOError to OSError I forgot to update the news item.

Doc/whatsnew/3.4.rst
Misc/NEWS

index 044d830b79706822d9da927b60bc6d6dc5a4e56b..ab480203cc646f17f27850a3c5af147905682b34 100644 (file)
@@ -1373,6 +1373,9 @@ removed:
   ``get_selector``, ``set_proxy``, ``get_origin_req_host``, and
   ``is_unverifiable`` have been removed (use direct attribute access instead).
 
+* Support for loading the deprecated ``TYPE_INT64`` has been removed from
+  :mod:`marshal`.  (Contributed by Dan Riti in :issue:`15480`.)
+
 
 
 Porting to Python 3.4
index aca2b5ad3038c2a3c877093865806a12fa82ea2d..3429655c1594859e3cf08a817e3df348fb908d38 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2218,7 +2218,7 @@ Library
 - Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal.
   Initial patch by Daniel Riti.
 
-- Issue #2118: SMTPException is now a subclass of IOError.
+- Issue #2118: SMTPException is now a subclass of OSError.
 
 - Issue #17016: Get rid of possible pointer wraparounds and integer overflows
   in the re module.  Patch by Nickolai Zeldovich.