[Python-checkins] r79799 - in python/branches/py3k: Doc/faq/extending.rst Doc/howto/functional.rst Doc/using/mac.rst Doc/whatsnew/2.1.rst Doc/whatsnew/2.6.rst

ezio.melotti python-checkins at python.org
Mon Apr 5 15:25:52 CEST 2010


Author: ezio.melotti
Date: Mon Apr  5 15:25:51 2010
New Revision: 79799

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/faq/extending.rst
   python/branches/py3k/Doc/howto/functional.rst
   python/branches/py3k/Doc/using/mac.rst
   python/branches/py3k/Doc/whatsnew/2.1.rst
   python/branches/py3k/Doc/whatsnew/2.6.rst

Modified: python/branches/py3k/Doc/faq/extending.rst
==============================================================================
--- python/branches/py3k/Doc/faq/extending.rst	(original)
+++ python/branches/py3k/Doc/faq/extending.rst	Mon Apr  5 15:25:51 2010
@@ -54,7 +54,8 @@
 <http://www.riverbankcomputing.co.uk/software/sip/>`__, `CXX
 <http://cxx.sourceforge.net/>`_ `Boost
 <http://www.boost.org/libs/python/doc/index.html>`_, or `Weave
-<http://www.scipy.org/Weave>`_ are also alternatives for wrapping C++ libraries.
+<http://www.scipy.org/Weave>`_ are also alternatives for wrapping
+C++ libraries.
 
 
 How can I execute arbitrary Python statements from C?
@@ -200,7 +201,7 @@
 Python type around a C structure (pointer) type will also work for C++ objects.
 
 For C++ libraries, you can look at `SIP
-<http://www.riverbankcomputing.co.uk/sip/>`_, `CXX
+<http://www.riverbankcomputing.co.uk/software/sip/>`_, `CXX
 <http://cxx.sourceforge.net/>`_, `Boost
 <http://www.boost.org/libs/python/doc/index.html>`_, `Weave
 <http://www.scipy.org/Weave>`_ or `SWIG <http://www.swig.org>`_

Modified: python/branches/py3k/Doc/howto/functional.rst
==============================================================================
--- python/branches/py3k/Doc/howto/functional.rst	(original)
+++ python/branches/py3k/Doc/howto/functional.rst	Mon Apr  5 15:25:51 2010
@@ -336,7 +336,7 @@
 
 List comprehensions and generator expressions (short form: "listcomps" and
 "genexps") are a concise notation for such operations, borrowed from the
-functional programming language Haskell (http://www.haskell.org).  You can strip
+functional programming language Haskell (http://www.haskell.org/).  You can strip
 all the whitespace from a stream of strings with the following code::
 
     line_list = ['  line 1\n', 'line 2  \n', ...]

Modified: python/branches/py3k/Doc/using/mac.rst
==============================================================================
--- python/branches/py3k/Doc/using/mac.rst	(original)
+++ python/branches/py3k/Doc/using/mac.rst	Mon Apr  5 15:25:51 2010
@@ -66,7 +66,7 @@
 http://www.barebones.com/products/bbedit/index.shtml) are good choices, as is
 :program:`TextMate` (see http://macromates.com/). Other editors include
 :program:`Gvim` (http://macvim.org) and :program:`Aquamacs`
-(http://aquamacs.org).
+(http://aquamacs.org/).
 
 To run your script from the Terminal window you must make sure that
 :file:`/usr/local/bin` is in your shell search path.

Modified: python/branches/py3k/Doc/whatsnew/2.1.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/2.1.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/2.1.rst	Mon Apr  5 15:25:51 2010
@@ -731,7 +731,7 @@
          ...
 
   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

Modified: python/branches/py3k/Doc/whatsnew/2.6.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/2.6.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/2.6.rst	Mon Apr  5 15:25:51 2010
@@ -2195,7 +2195,7 @@
   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


More information about the Python-checkins mailing list