[Python-checkins] r73319 - python/branches/py3k/Doc/whatsnew/3.1.rst

Nick Coghlan ncoghlan at gmail.com
Wed Jun 10 13:43:13 CEST 2009


raymond.hettinger wrote:
> Author: raymond.hettinger
> Date: Tue Jun  9 23:01:05 2009
> New Revision: 73319
> 
> Log:
> Add example for the change to pickle and note the effect of the fix_imports option.
> 
> Modified:
>    python/branches/py3k/Doc/whatsnew/3.1.rst
> 
> Modified: python/branches/py3k/Doc/whatsnew/3.1.rst
> ==============================================================================
> --- python/branches/py3k/Doc/whatsnew/3.1.rst	(original)
> +++ python/branches/py3k/Doc/whatsnew/3.1.rst	Tue Jun  9 23:01:05 2009
> @@ -376,6 +376,30 @@
>  
>    (Contributed by Derek Morr; :issue:`1655` and :issue:`1664`.)
>  
> +* The :mod:`pickle` module has been adapted for better interoperability with
> +  Python 2.x when used with protocol 2 or lower.  The reorganization of the
> +  standard library changed the formal reference for many objects.  For
> +  example, ``__builtin__.set`` in Python 2 is called ``builtins.set`` in Python
> +  3. This change cofounded efforts to share data between different versions of
                    ^^^^^^^^^

Missing the 'n' from confounded.

Cheers,
Nick.

-- 
Nick Coghlan   |   ncoghlan at gmail.com   |   Brisbane, Australia
---------------------------------------------------------------


More information about the Python-checkins mailing list