Skip to content

Commit

Permalink
Add versionchanged tags for python#14772 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
briancurtin committed Jun 19, 2012
1 parent 1d25b6f commit 066dacf
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Doc/library/shutil.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Directory and files operations
:exc:`IOError` used to be raised instead of :exc:`OSError`.
Added *symlinks* argument.

.. versionchanged:: 3.3
Added return of the *dst*.

.. function:: copymode(src, dst, symlinks=False)

Expand Down Expand Up @@ -101,6 +103,9 @@ Directory and files operations
.. versionchanged:: 3.3
Added *symlinks* argument.

.. versionchanged:: 3.3
Added return of the *dst*.

.. function:: copy2(src, dst, symlinks=False)

Similar to :func:`shutil.copy`, including that the destination is
Expand All @@ -113,6 +118,9 @@ Directory and files operations
Added *symlinks* argument, try to copy extended file system attributes
too (currently Linux only).

.. versionchanged:: 3.3
Added return of the *dst*.

.. function:: ignore_patterns(\*patterns)

This factory function creates a function that can be used as a callable for
Expand Down Expand Up @@ -169,6 +177,8 @@ Directory and files operations
.. versionchanged:: 3.3
Copy metadata when *symlinks* is false.

.. versionchanged:: 3.3
Added return of the *dst*.

.. function:: rmtree(path, ignore_errors=False, onerror=None)

Expand Down Expand Up @@ -211,6 +221,9 @@ Directory and files operations
Added explicit symlink handling for foreign filesystems, thus adapting
it to the behavior of GNU's :program:`mv`.

.. versionchanged:: 3.3
Added return of the *dst*.

.. function:: disk_usage(path)

Return disk usage statistics about the given path as a :term:`named tuple`
Expand Down

0 comments on commit 066dacf

Please sign in to comment.