summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-06 04:24:28 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-06 04:24:28 -0700
commit186b72e56600c79888795fa4eed286a5ebf71974 (patch)
tree2c99bbd1405cdb10bcad25d7f512056e7233e97b /docs/quick_tutorial/package.rst
parent7c29ea97c6617d1f6b2f621bf88aa6a0ab0209fa (diff)
downloadpyramid-186b72e56600c79888795fa4eed286a5ebf71974.tar.gz
pyramid-186b72e56600c79888795fa4eed286a5ebf71974.tar.bz2
pyramid-186b72e56600c79888795fa4eed286a5ebf71974.zip
- remove conf.py straggler
- update intersphinx link to python3 docs - Closes #2429
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>`_.