Skip to content

Commit 19192dd

Browse files
committed
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. ........
1 parent 9de5a41 commit 19192dd

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Doc/faq/extending.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ with a tool such as `SWIG <http://www.swig.org>`_. `SIP
5454
<http://www.riverbankcomputing.co.uk/software/sip/>`__, `CXX
5555
<http://cxx.sourceforge.net/>`_ `Boost
5656
<http://www.boost.org/libs/python/doc/index.html>`_, or `Weave
57-
<http://www.scipy.org/Weave>`_ are also alternatives for wrapping C++ libraries.
57+
<http://www.scipy.org/Weave>`_ are also alternatives for wrapping
58+
C++ libraries.
5859

5960

6061
How can I execute arbitrary Python statements from C?
@@ -200,7 +201,7 @@ whole lot of difference between C and C++ -- so the strategy of building a new
200201
Python type around a C structure (pointer) type will also work for C++ objects.
201202

202203
For C++ libraries, you can look at `SIP
203-
<http://www.riverbankcomputing.co.uk/sip/>`_, `CXX
204+
<http://www.riverbankcomputing.co.uk/software/sip/>`_, `CXX
204205
<http://cxx.sourceforge.net/>`_, `Boost
205206
<http://www.boost.org/libs/python/doc/index.html>`_, `Weave
206207
<http://www.scipy.org/Weave>`_ or `SWIG <http://www.swig.org>`_

Doc/howto/functional.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ substring.
336336

337337
List comprehensions and generator expressions (short form: "listcomps" and
338338
"genexps") are a concise notation for such operations, borrowed from the
339-
functional programming language Haskell (http://www.haskell.org). You can strip
339+
functional programming language Haskell (http://www.haskell.org/). You can strip
340340
all the whitespace from a stream of strings with the following code::
341341

342342
line_list = [' line 1\n', 'line 2 \n', ...]

Doc/using/mac.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ number of standard Unix command line editors, :program:`vim` and
6666
http://www.barebones.com/products/bbedit/index.shtml) are good choices, as is
6767
:program:`TextMate` (see http://macromates.com/). Other editors include
6868
:program:`Gvim` (http://macvim.org) and :program:`Aquamacs`
69-
(http://aquamacs.org).
69+
(http://aquamacs.org/).
7070

7171
To run your script from the Terminal window you must make sure that
7272
:file:`/usr/local/bin` is in your shell search path.

Doc/whatsnew/2.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ of the more notable changes are:
731731
...
732732

733733
For a fuller discussion of the line I/O changes, see the python-dev summary for
734-
January 1-15, 2001 at http://www.python.org/dev/summary/2001-01-1.html.
734+
January 1-15, 2001 at http://www.python.org/dev/summary/2001-01-1/.
735735

736736
* A new method, :meth:`popitem`, was added to dictionaries to enable
737737
destructively iterating through the contents of a dictionary; this can be faster

Doc/whatsnew/2.6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2195,7 +2195,7 @@ changes, or look through the Subversion logs for all the details.
21952195
This produces better results when operating on Unix's dot-files.
21962196
For example, ``os.path.splitext('.ipython')``
21972197
now returns ``('.ipython', '')`` instead of ``('', '.ipython')``.
2198-
(:issue:`115886`)
2198+
(:issue:`1115886`)
21992199

22002200
A new function, ``os.path.relpath(path, start='.')``, returns a relative path
22012201
from the ``start`` path, if it's supplied, or from the current

0 commit comments

Comments
 (0)