summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-09 22:00:00 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-09 22:00:00 (GMT)
commit3abc6d6cb3cf00a25b30df5f231dc7df80bea406 (patch)
tree4f2f798bb08bba11dc616c02fec0392563bcc107 /Doc/extending
parentc207c717d8743f620b772f051e8af588fdf4d400 (diff)
downloadcpython-3abc6d6cb3cf00a25b30df5f231dc7df80bea406.zip
cpython-3abc6d6cb3cf00a25b30df5f231dc7df80bea406.tar.gz
cpython-3abc6d6cb3cf00a25b30df5f231dc7df80bea406.tar.bz2
Fix link.
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/windows.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/windows.rst b/Doc/extending/windows.rst
index a34ba2b..a0782a7 100644
--- a/Doc/extending/windows.rst
+++ b/Doc/extending/windows.rst
@@ -179,7 +179,7 @@ and add the following to the module initialization function::
MyObject_Type.ob_type = &PyType_Type;
-Refer to section 3 of the `Python FAQ <http://www.python.org/doc/FAQ.html>`_ for
+Refer to section 3 of the `Python FAQ <http://www.python.org/doc/faq>`_ for
details on why you must do this.