]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.9] Remove effbot urls (GH-26308). (#92162)
authorThaddeus1499 <104600742+Thaddeus1499@users.noreply.github.com>
Mon, 2 May 2022 18:22:05 +0000 (14:22 -0400)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 18:22:05 +0000 (12:22 -0600)
(cherry picked from commit e9f66aedf44ccc3be27975cfb070a44ce6a6bd13)

Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com>
Doc/about.rst
Doc/faq/library.rst
Doc/howto/curses.rst
Doc/library/xml.etree.elementtree.rst
Doc/library/xmlrpc.client.rst
Lib/xml/etree/ElementPath.py
Objects/stringlib/fastsearch.h

index 3ea311fa629dd2ba1482c351ef5684910816922d..f0b908487b2d092f9bf4da318de6f82a413bfcca 100644 (file)
@@ -23,9 +23,8 @@ Many thanks go to:
   and writer of much of the content;
 * the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
   reStructuredText and the Docutils suite;
-* Fredrik Lundh for his `Alternative Python Reference
-  <http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good
-  ideas.
+* Fredrik Lundh for his Alternative Python Reference project from which Sphinx
+  got many good ideas.
 
 
 Contributors to the Python Documentation
index 7703d48a2137a344dca72bc72abf3f49f125b3f1..96525ddca32d626a8c8202c508990e302de13eae 100644 (file)
@@ -106,9 +106,6 @@ support, pads, and mouse support. This means the module isn't compatible with
 operating systems that only have BSD curses, but there don't seem to be any
 currently maintained OSes that fall into this category.
 
-For Windows: use `the consolelib module
-<http://effbot.org/zone/console-index.htm>`_.
-
 
 Is there an equivalent to C's onexit() in Python?
 -------------------------------------------------
index cc4b4785b12290dcb0c500d418c6ac1b1fb8aec0..c0149ffff37716bc6c8876261b0ec10b4a678a23 100644 (file)
@@ -55,11 +55,7 @@ everything, though.
 
 The Windows version of Python doesn't include the :mod:`curses`
 module.  A ported version called `UniCurses
-<https://pypi.org/project/UniCurses>`_ is available.  You could
-also try `the Console module <http://effbot.org/zone/console-index.htm>`_
-written by Fredrik Lundh, which doesn't
-use the same API as curses but provides cursor-addressable text output
-and full support for mouse and keyboard input.
+<https://pypi.org/project/UniCurses>`_ is available.
 
 
 The Python curses module
index f4bccf6609810ee05814d0ce5a0eac1654f197f5..92248e751632b1e8a1d7c2a1d94ded921c352d9b 100644 (file)
@@ -363,13 +363,6 @@ These two approaches both output::
      |--> Commander Clement
 
 
-Additional resources
-^^^^^^^^^^^^^^^^^^^^
-
-See http://effbot.org/zone/element-index.htm for tutorials and links to other
-docs.
-
-
 .. _elementtree-xpath:
 
 XPath support
index 32403819531aa82d02e4935de5fd229d30839f6a..30c5a710e0ed86e95ce44720e00c0f7fe902110c 100644 (file)
@@ -169,12 +169,6 @@ between conformable Python objects and XML on the wire.
    `XML-RPC Specification <http://xmlrpc.scripting.com/spec.html>`_
       The official specification.
 
-   `Unofficial XML-RPC Errata <http://effbot.org/zone/xmlrpc-errata.htm>`_
-      Fredrik Lundh's "unofficial errata, intended to clarify certain
-      details in the XML-RPC specification, as well as hint at
-      'best practices' to use when designing your own XML-RPC
-      implementations."
-
 .. _serverproxy-objects:
 
 ServerProxy Objects
index 880ea7bd991167b8817b0cd083a68e1fe3f8327b..493c026dbabecdb89e82b2abb99f41d883fa083e 100644 (file)
@@ -225,7 +225,6 @@ def prepare_parent(next, token):
 
 def prepare_predicate(next, token):
     # FIXME: replace with real parser!!! refs:
-    # http://effbot.org/zone/simple-iterator-parser.htm
     # http://javascript.crockford.com/tdop/tdop.html
     signature = []
     predicate = []
index 56a4467d353813e5db41c8c959e8d1639f9335d9..84b415a94906bc840aed980009f83126b2de7f54 100644 (file)
@@ -4,7 +4,8 @@
 
 /* fast search/count implementation, based on a mix between boyer-
    moore and horspool, with a few more bells and whistles on the top.
-   for some more background, see: http://effbot.org/zone/stringlib.htm */
+   for some more background, see:
+   https://web.archive.org/web/20201107074620/http://effbot.org/zone/stringlib.htm */
 
 /* note: fastsearch may access s[n], which isn't a problem when using
    Python's ordinary string types, but may cause problems if you're