Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8df168c

Browse files
committed
merge with 3.2
2 parents eb90caa + 1abde36 commit 8df168c

4 files changed

Lines changed: 10 additions & 13 deletions

File tree

Doc/howto/functional.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,9 +1151,9 @@ Text Processing".
11511151

11521152
Mertz also wrote a 3-part series of articles on functional programming
11531153
for IBM's DeveloperWorks site; see
1154-
`part 1 <http://www-128.ibm.com/developerworks/library/l-prog.html>`__,
1155-
`part 2 <http://www-128.ibm.com/developerworks/library/l-prog2.html>`__, and
1156-
`part 3 <http://www-128.ibm.com/developerworks/linux/library/l-prog3.html>`__,
1154+
`part 1 <http://www.ibm.com/developerworks/linux/library/l-prog/index.html>`__,
1155+
`part 2 <http://www.ibm.com/developerworks/linux/library/l-prog2/index.html>`__, and
1156+
`part 3 <http://www.ibm.com/developerworks/linux/library/l-prog3/index.html>`__,
11571157

11581158

11591159
Python documentation

Doc/howto/webservers.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ Setting up FastCGI
274274
Each web server requires a specific module.
275275

276276
* Apache has both `mod_fastcgi <http://www.fastcgi.com/drupal/>`_ and `mod_fcgid
277-
<http://fastcgi.coremail.cn/>`_. ``mod_fastcgi`` is the original one, but it
277+
<http://httpd.apache.org/mod_fcgid/>`_. ``mod_fastcgi`` is the original one, but it
278278
has some licensing issues, which is why it is sometimes considered non-free.
279279
``mod_fcgid`` is a smaller, compatible alternative. One of these modules needs
280280
to be loaded by Apache.
@@ -365,7 +365,7 @@ testing.
365365

366366
A really great WSGI feature is middleware. Middleware is a layer around your
367367
program which can add various functionality to it. There is quite a bit of
368-
`middleware <http://wsgi.org/wsgi/Middleware_and_Utilities>`_ already
368+
`middleware <http://www.wsgi.org/en/latest/libraries.html>`_ already
369369
available. For example, instead of writing your own session management (HTTP
370370
is a stateless protocol, so to associate multiple HTTP requests with a single
371371
user your application must create and manage such state via a session), you can
@@ -396,9 +396,9 @@ compared with other web technologies.
396396

397397
.. seealso::
398398

399-
A good overview of WSGI-related code can be found in the `WSGI wiki
400-
<http://wsgi.org/wsgi>`_, which contains an extensive list of `WSGI servers
401-
<http://wsgi.org/wsgi/Servers>`_ which can be used by *any* application
399+
A good overview of WSGI-related code can be found in the `WSGI homepage
400+
<http://www.wsgi.org/en/latest/index.html>`_, which contains an extensive list of `WSGI servers
401+
<http://www.wsgi.org/en/latest/servers.html>`_ which can be used by *any* application
402402
supporting WSGI.
403403

404404
You might be interested in some WSGI-supporting modules already contained in

Doc/library/atexit.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
.. moduleauthor:: Skip Montanaro <[email protected]>
77
.. sectionauthor:: Skip Montanaro <[email protected]>
88

9-
**Source code:** :source:`Lib/atexit.py`
10-
11-
--------------
129

1310
The :mod:`atexit` module defines functions to register and unregister cleanup
1411
functions. Functions thus registered are automatically executed upon normal

Doc/using/unix.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ following links:
2626

2727
.. seealso::
2828

29-
http://www.linux.com/articles/60383
29+
http://www.debian.org/doc/manuals/maint-guide/first.en.html
3030
for Debian users
3131
http://linuxmafia.com/pub/linux/suse-linux-internals/chapter35.html
3232
for OpenSuse users
33-
http://docs.fedoraproject.org/drafts/rpm-guide-en/ch-creating-rpms.html
33+
http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-creating-rpms.html
3434
for Fedora users
3535
http://www.slackbook.org/html/package-management-making-packages.html
3636
for Slackware users

0 commit comments

Comments
 (0)