summaryrefslogtreecommitdiff
path: root/docs/intro/reusable-apps.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-05-08 18:07:43 -0400
committerTim Graham <timograham@gmail.com>2016-05-08 18:09:10 -0400
commit145572adb386dc05bc1302bee4432648b13e7e66 (patch)
treec16ab4d1b735d95ab51a845202330f268e7158f8 /docs/intro/reusable-apps.txt
parent86b346435a6735484c23fc9c798cf5243cbf8124 (diff)
[1.9.x] Fixed #26483 -- Updated docs.python.org links to use Intersphinx.
Backport of f5ff5010cd74500785a707ac70b51d292403cddc from master
Diffstat (limited to 'docs/intro/reusable-apps.txt')
-rw-r--r--docs/intro/reusable-apps.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index fee59a37fa..c0e5e086f6 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -34,9 +34,9 @@ projects and ready to publish for others to install and use.
.. admonition:: Package? App?
- A Python `package <https://docs.python.org/tutorial/modules.html#packages>`_
- provides a way of grouping related Python code for easy reuse. A package
- contains one or more files of Python code (also known as "modules").
+ A Python :term:`package` provides a way of grouping related Python code for
+ easy reuse. A package contains one or more files of Python code (also known
+ as "modules").
A package can be imported with ``import foo.bar`` or ``from foo import
bar``. For a directory (like ``polls``) to form a package, it must contain