mirror of https://github.com/python/cpython
Remove effbot urls (GH-26308)
This commit is contained in:
parent
a9e43615c2
commit
e9f66aedf4
|
@ -23,9 +23,8 @@ Many thanks go to:
|
||||||
and writer of much of the content;
|
and writer of much of the content;
|
||||||
* the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
|
* the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
|
||||||
reStructuredText and the Docutils suite;
|
reStructuredText and the Docutils suite;
|
||||||
* Fredrik Lundh for his `Alternative Python Reference
|
* Fredrik Lundh for his Alternative Python Reference project from which Sphinx
|
||||||
<http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good
|
got many good ideas.
|
||||||
ideas.
|
|
||||||
|
|
||||||
|
|
||||||
Contributors to the Python Documentation
|
Contributors to the Python Documentation
|
||||||
|
|
|
@ -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
|
operating systems that only have BSD curses, but there don't seem to be any
|
||||||
currently maintained OSes that fall into this category.
|
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?
|
Is there an equivalent to C's onexit() in Python?
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
|
@ -55,11 +55,7 @@ everything, though.
|
||||||
|
|
||||||
The Windows version of Python doesn't include the :mod:`curses`
|
The Windows version of Python doesn't include the :mod:`curses`
|
||||||
module. A ported version called `UniCurses
|
module. A ported version called `UniCurses
|
||||||
<https://pypi.org/project/UniCurses>`_ is available. You could
|
<https://pypi.org/project/UniCurses>`_ is available.
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
||||||
The Python curses module
|
The Python curses module
|
||||||
|
|
|
@ -34,9 +34,6 @@ installed, so you can read the Tcl/Tk documentation specific to that version.
|
||||||
`Tkinter 8.5 reference: a GUI for Python <https://www.tkdocs.com/shipman/>`_
|
`Tkinter 8.5 reference: a GUI for Python <https://www.tkdocs.com/shipman/>`_
|
||||||
On-line reference material.
|
On-line reference material.
|
||||||
|
|
||||||
`Tkinter docs from effbot <http://effbot.org/tkinterbook/>`_
|
|
||||||
Online reference for tkinter supported by effbot.org.
|
|
||||||
|
|
||||||
`Programming Python <http://learning-python.com/about-pp4e.html>`_
|
`Programming Python <http://learning-python.com/about-pp4e.html>`_
|
||||||
Book by Mark Lutz, has excellent coverage of Tkinter.
|
Book by Mark Lutz, has excellent coverage of Tkinter.
|
||||||
|
|
||||||
|
|
|
@ -363,13 +363,6 @@ These two approaches both output::
|
||||||
|--> Commander Clement
|
|--> Commander Clement
|
||||||
|
|
||||||
|
|
||||||
Additional resources
|
|
||||||
^^^^^^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
See http://effbot.org/zone/element-index.htm for tutorials and links to other
|
|
||||||
docs.
|
|
||||||
|
|
||||||
|
|
||||||
.. _elementtree-xpath:
|
.. _elementtree-xpath:
|
||||||
|
|
||||||
XPath support
|
XPath support
|
||||||
|
|
|
@ -169,12 +169,6 @@ between conformable Python objects and XML on the wire.
|
||||||
`XML-RPC Specification <http://xmlrpc.scripting.com/spec.html>`_
|
`XML-RPC Specification <http://xmlrpc.scripting.com/spec.html>`_
|
||||||
The official specification.
|
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:
|
||||||
|
|
||||||
ServerProxy Objects
|
ServerProxy Objects
|
||||||
|
|
|
@ -226,7 +226,6 @@ def prepare_parent(next, token):
|
||||||
|
|
||||||
def prepare_predicate(next, token):
|
def prepare_predicate(next, token):
|
||||||
# FIXME: replace with real parser!!! refs:
|
# FIXME: replace with real parser!!! refs:
|
||||||
# http://effbot.org/zone/simple-iterator-parser.htm
|
|
||||||
# http://javascript.crockford.com/tdop/tdop.html
|
# http://javascript.crockford.com/tdop/tdop.html
|
||||||
signature = []
|
signature = []
|
||||||
predicate = []
|
predicate = []
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
|
|
||||||
/* fast search/count implementation, based on a mix between boyer-
|
/* fast search/count implementation, based on a mix between boyer-
|
||||||
moore and horspool, with a few more bells and whistles on the top.
|
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
|
/* 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
|
Python's ordinary string types, but may cause problems if you're
|
||||||
|
|
Loading…
Reference in New Issue