|
Original |
Translation |
|
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.
|
|
|
2907
|
(Contributed by Tarek Ziade.)
|
|
|
2908
|
|
2909
|
XXX *enable_load_extension*
|
|
|
2910
|
|
|
|
2911
|
New :class:`~sqlite3.Connection` attribute :attr:`~sqlite3.Connection.in_transaction` is :const:`True` when there are uncommitted changes, and :const:`False` otherwise. (Contributed by R. David Murray and Shashwat Anand, :issue:`8845`.)
|
|
|
2912
|
|
|