summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/narr/project.rst')
-rw-r--r--docs/narr/project.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index c961b4143..4f96448af 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -683,7 +683,8 @@ The ``myproject`` :term:`package` lives inside the ``MyProject``
#. An ``__init__.py`` file signifies that this is a Python :term:`package`.
It also contains code that helps users run the application, including a
- ``main`` function which is used as a Paste entry point.
+ ``main`` function which is used as a entry point for commands such as
+ ``pserve``, ``pshell``, ``pviews``, and others.
#. A ``resources.py`` module, which contains :term:`resource` code.
@@ -750,7 +751,7 @@ also informs Python that the directory which contains it is a *package*.
directory of the ``mypackage`` package).
Line 12 returns a :term:`WSGI` application to the caller of the function
- (Paste).
+ (Pyramid's pserve).
.. index::
single: views.py