Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update some web links #41

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:target: https://pypi.python.org/pypi/manuel/

Documentation, a full list of included plug-ins, and examples are available at
`<http://packages.python.org/manuel/>`_.
`<https://pythonhosted.org/manuel/>`_.

Source code and issues are managed at https://github.com/benji-york/manuel.

Expand Down
14 changes: 7 additions & 7 deletions src/manuel/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,18 +318,18 @@ and :data:`checker` arguments.

m = manuel.doctest.Manuel(optionflags=optionflags, checker=checker)

See the `doctest documentation <http://docs.python.org/library/doctest.html>`_
See the `doctest documentation <https://docs.python.org/library/doctest.html>`_
for more information about the `available options
<http://docs.python.org/library/doctest.html#doctest-options>`_ and `output
checkers <http://docs.python.org/library/doctest.html#outputchecker-objects>`_
<https://docs.python.org/library/doctest.html#doctest-options>`_ and `output
checkers <https://docs.python.org/library/doctest.html#outputchecker-objects>`_


.. note::

:mod:`zope.testing.renormalizing` provides an :class:`OutputChecker`
for smoothing out differences between actual and expected output for things
that are hard to control (like memory addresses and time). See the
`module's doctests <http://svn.zope.org/zope.testing/trunk/src/zope/testing/renormalizing.py?view=markup>`_
`module's documentation <https://zopetesting.readthedocs.io/en/latest/renormalizing.html>`_
for more information on how it works. Here's a short example that
smoothes over the differences between CPython's and PyPy's NameError
messages:
Expand Down Expand Up @@ -459,9 +459,9 @@ intended document contents will remain. Like so::
Code Blocks
===========

`Sphinx <http://sphinx.pocoo.org/>`_ and other docutils `extensions
<http://docutils.sourceforge.net/sandbox/code-block-directive/docs/syntax-highlight.html>`_
provide a `"code-block" directive <http://sphinx.pocoo.org/markup/code.html>`_,
`Sphinx <https://www.sphinx-doc.org/>`_ and other docutils `extensions
<https://docutils.sourceforge.net/sandbox/code-block-directive/docs/syntax-highlight.html>`_
provide a `"code-block" directive <https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#directive-code-block>`_,
which allows inlined snippets of code in reST documents.

The :mod:`manuel.codeblock` module provides the ability to execute the contents
Expand Down