Original Translation
2897
What's New In Python 3.2
2898
This article explains the new features in Python 3.2, compared to 3.1.
2899
PEP XXX: Stub
2900
Stub
2901
The :class:`ftplib.FTP` class now supports the context manager protocol (Contributed by Tarek Ziadé and Giampaolo Rodolà; :issue:`4972`.)
Suggestion 0 by nobody:
IpxeqB <a href="http://bszgzcqkblsh.com/">bszgzcqkblsh</a>, [url=http://dxxskyvkptii.com/]dxxskyvkptii[/url], [link=http://gnlycipmyxqy.com/]gnlycipmyxqy[/link], http://qgctewolbkjl.com/
2902
The previously deprecated :func:`string.maketrans` function has been removed in favor of the static methods, :meth:`bytes.maketrans` and :meth:`bytearray.maketrans`. This change solves the confusion around which types were supported by the :mod:`string` module. Now, :class:`str`, :class:`bytes`, and :class:`bytearray` each have their own **maketrans** and **translate** methods with intermediate translation tables of the appropriate type.
2903
The previously deprecated :func:`contextlib.nested` function has been removed in favor of a plain :keyword:`with` statement which can accept multiple context managers. The latter technique is faster (because it is built-in), and it does a better job finalizing multiple context managers when one of them raises an exception.
2904
The :func:`shutil.copytree` function has two new options:
2905
*ignore_dangling_symlinks*: when ``symlinks=False`` (meaning that the function copies the file pointed to by the symlink, not the symlink itself) this option will silence the error thrown if the file doesn't exist.
2906
*copy_function*: a callable that will be used to copy files. :func:`shutil.copy2` is used by default.