diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-05 13:57:55 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-05 13:57:55 (GMT) |
commit | 9e8346cb4d9203293fa82a6728c5774bea4c6d11 (patch) | |
tree | d58606b16e7f3484a0555556ea0f0e0ebd0408c4 /Doc/whatsnew | |
parent | a0bc7dc475dfe41b183d796534dbd74a6ce2f506 (diff) | |
download | cpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.zip cpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.tar.gz cpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.tar.bz2 |
Merged revisions 79799 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79799 | ezio.melotti | 2010-04-05 16:25:51 +0300 (Mon, 05 Apr 2010) | 9 lines
Merged revisions 79797 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79797 | ezio.melotti | 2010-04-05 15:51:45 +0300 (Mon, 05 Apr 2010) | 1 line
Fix some broken URLs.
........
................
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.1.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.1.rst b/Doc/whatsnew/2.1.rst index 6b2ce3f..7f40521 100644 --- a/Doc/whatsnew/2.1.rst +++ b/Doc/whatsnew/2.1.rst @@ -731,7 +731,7 @@ of the more notable changes are: ... For a fuller discussion of the line I/O changes, see the python-dev summary for - January 1-15, 2001 at http://www.python.org/dev/summary/2001-01-1.html. + January 1-15, 2001 at http://www.python.org/dev/summary/2001-01-1/. * A new method, :meth:`popitem`, was added to dictionaries to enable destructively iterating through the contents of a dictionary; this can be faster diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 8b71153..af604bb 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -2230,7 +2230,7 @@ changes, or look through the Subversion logs for all the details. This produces better results when operating on Unix's dot-files. For example, ``os.path.splitext('.ipython')`` now returns ``('.ipython', '')`` instead of ``('', '.ipython')``. - (:issue:`115886`) + (:issue:`1115886`) A new function, ``os.path.relpath(path, start='.')``, returns a relative path from the ``start`` path, if it's supplied, or from the current |