summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-06 04:31:22 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-06 04:31:22 -0700
commit2afec648d11f2814869d7a471b38b1f6e60004f0 (patch)
tree2c99bbd1405cdb10bcad25d7f512056e7233e97b /docs/quick_tutorial/package.rst
parent9589aa46f02a705e467ba77e15088927ddc03603 (diff)
parent186b72e56600c79888795fa4eed286a5ebf71974 (diff)
downloadpyramid-2afec648d11f2814869d7a471b38b1f6e60004f0.tar.gz
pyramid-2afec648d11f2814869d7a471b38b1f6e60004f0.tar.bz2
pyramid-2afec648d11f2814869d7a471b38b1f6e60004f0.zip
Merge pull request #2431 from stevepiercy/docs/easy-install-to-pip.2104
- remove conf.py straggler
Diffstat (limited to 'docs/quick_tutorial/package.rst')
-rw-r--r--docs/quick_tutorial/package.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/package.rst b/docs/quick_tutorial/package.rst
index 9e175bdaa..6a379032e 100644
--- a/docs/quick_tutorial/package.rst
+++ b/docs/quick_tutorial/package.rst
@@ -10,7 +10,7 @@ Background
==========
Python developers can organize a collection of modules and files into a
-namespaced unit called a :ref:`package <python3:tut-packages>`. If a
+namespaced unit called a :ref:`package <python:tut-packages>`. If a
directory is on ``sys.path`` and has a special file named
``__init__.py``, it is treated as a Python package.
@@ -102,6 +102,6 @@ of an odd duck. We would never do this unless we were writing a tutorial that
tries to capture how this stuff works a step at a time. It's generally a bad
idea to run a Python module inside a package directly as a script.
-.. seealso:: :ref:`Python Packages <python3:tut-packages>` and `Working in
+.. seealso:: :ref:`Python Packages <python:tut-packages>` and `Working in
"Development Mode"
<https://packaging.python.org/en/latest/distributing/#working-in-development-mode>`_.