[Python-checkins] cpython: whatsnew: removal of TYPE_INT64 from marshal.

r.david.murray python-checkins at python.org
Sun Jan 5 03:18:30 CET 2014


http://hg.python.org/cpython/rev/6d72617cae64
changeset:   88306:6d72617cae64
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Jan 04 21:17:52 2014 -0500
summary:
  whatsnew: removal of TYPE_INT64 from marshal.

Also update news entry for SMTPException; when I changed it from
IOError to OSError I forgot to update the news item.

files:
  Doc/whatsnew/3.4.rst |  3 +++
  Misc/NEWS            |  2 +-
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1373,6 +1373,9 @@
   ``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
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2218,7 +2218,7 @@
 - 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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list