Skip to content

Commit c8ab163

Browse files
pr-watsonE-Paine
andauthored
[3.10] bpo-43504: Remove effbot urls (GH-26308) (#92161)
* [3.10] Remove effbot urls (GH-26308). (cherry picked from commit e9f66ae) Co-authored-by: E-Paine <[email protected]>
1 parent bab4d0b commit c8ab163

File tree

7 files changed

+5
-26
lines changed

7 files changed

+5
-26
lines changed

Doc/about.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ Many thanks go to:
2323
and writer of much of the content;
2424
* the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
2525
reStructuredText and the Docutils suite;
26-
* Fredrik Lundh for his `Alternative Python Reference
27-
<http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good
28-
ideas.
26+
* Fredrik Lundh for his Alternative Python Reference project from which Sphinx
27+
got many good ideas.
2928

3029

3130
Contributors to the Python Documentation

Doc/faq/library.rst

-3
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ support, pads, and mouse support. This means the module isn't compatible with
106106
operating systems that only have BSD curses, but there don't seem to be any
107107
currently maintained OSes that fall into this category.
108108
109-
For Windows: use `the consolelib module
110-
<http://effbot.org/zone/console-index.htm>`_.
111-
112109
113110
Is there an equivalent to C's onexit() in Python?
114111
-------------------------------------------------

Doc/howto/curses.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,7 @@ everything, though.
5555

5656
The Windows version of Python doesn't include the :mod:`curses`
5757
module. A ported version called `UniCurses
58-
<https://pypi.org/project/UniCurses>`_ is available. You could
59-
also try `the Console module <http://effbot.org/zone/console-index.htm>`_
60-
written by Fredrik Lundh, which doesn't
61-
use the same API as curses but provides cursor-addressable text output
62-
and full support for mouse and keyboard input.
58+
<https://pypi.org/project/UniCurses>`_ is available.
6359

6460

6561
The Python curses module

Doc/library/xml.etree.elementtree.rst

-7
Original file line numberDiff line numberDiff line change
@@ -363,13 +363,6 @@ These two approaches both output::
363363
|--> Commander Clement
364364

365365

366-
Additional resources
367-
^^^^^^^^^^^^^^^^^^^^
368-
369-
See http://effbot.org/zone/element-index.htm for tutorials and links to other
370-
docs.
371-
372-
373366
.. _elementtree-xpath:
374367

375368
XPath support

Doc/library/xmlrpc.client.rst

-6
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,6 @@ between conformable Python objects and XML on the wire.
169169
`XML-RPC Specification <http://xmlrpc.scripting.com/spec.html>`_
170170
The official specification.
171171

172-
`Unofficial XML-RPC Errata <http://effbot.org/zone/xmlrpc-errata.htm>`_
173-
Fredrik Lundh's "unofficial errata, intended to clarify certain
174-
details in the XML-RPC specification, as well as hint at
175-
'best practices' to use when designing your own XML-RPC
176-
implementations."
177-
178172
.. _serverproxy-objects:
179173

180174
ServerProxy Objects

Lib/xml/etree/ElementPath.py

-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ def select(context, result):
226226

227227
def prepare_predicate(next, token):
228228
# FIXME: replace with real parser!!! refs:
229-
# http://effbot.org/zone/simple-iterator-parser.htm
230229
# http://javascript.crockford.com/tdop/tdop.html
231230
signature = []
232231
predicate = []

Objects/stringlib/fastsearch.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
/* fast search/count implementation, based on a mix between boyer-
66
moore and horspool, with a few more bells and whistles on the top.
7-
for some more background, see: http://effbot.org/zone/stringlib.htm */
7+
for some more background, see:
8+
https://web.archive.org/web/20201107074620/http://effbot.org/zone/stringlib.htm */
89

910
/* note: fastsearch may access s[n], which isn't a problem when using
1011
Python's ordinary string types, but may cause problems if you're

0 commit comments

Comments
 (0)