This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Evelyn Mitchell
Recipients Evelyn Mitchell, docs@python, hashimo
Date 2016-06-07.17:45:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465321550.41.0.299019605283.issue27180@psf.upfronthosting.co.za>
In-reply-to
Content
*** cpythonmod/Doc/library/pathlib.rst  2016-06-07 11:29:07.200774979 -0600
--- cpython/Doc/library/pathlib.rst     2016-06-07 11:29:59.372777817 -0600
***************
*** 887,896 ****
  
  .. method:: Path.rename(target)
  
!    Rename this file or directory to the given *target*. On Unix, 
!    if *target* exists and is a file, it will be replaced silently 
!    if the user has permission. *target* can be either a string or 
!    another path object::
  
        >>> p = Path('foo')
        >>> p.open('w').write('some text')
--- 887,894 ----
  
  .. method:: Path.rename(target)
  
!    Rename this file or directory to the given *target*.  *target* can be
!    either a string or another path object::
  
        >>> p = Path('foo')
        >>> p.open('w').write('some text')
History
Date User Action Args
2016-06-07 17:45:50Evelyn Mitchellsetrecipients: + Evelyn Mitchell, docs@python, hashimo
2016-06-07 17:45:50Evelyn Mitchellsetmessageid: <1465321550.41.0.299019605283.issue27180@psf.upfronthosting.co.za>
2016-06-07 17:45:50Evelyn Mitchelllinkissue27180 messages
2016-06-07 17:45:50Evelyn Mitchellcreate