diff options
| author | Chris McDonough <chrism@plope.com> | 2010-12-19 02:41:16 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-12-19 02:41:16 -0500 |
| commit | 798aad1d723ab6616a607a10997c973229e70dfd (patch) | |
| tree | c9108ad0a72d7c02cda32948269c288142d6df26 /docs/glossary.rst | |
| parent | cad9ce5fd48c77c08005808570c9ffc5c0b215e0 (diff) | |
| download | pyramid-798aad1d723ab6616a607a10997c973229e70dfd.tar.gz pyramid-798aad1d723ab6616a607a10997c973229e70dfd.tar.bz2 pyramid-798aad1d723ab6616a607a10997c973229e70dfd.zip | |
update firstapp chapter
Diffstat (limited to 'docs/glossary.rst')
| -rw-r--r-- | docs/glossary.rst | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst index a27d73766..32e006b70 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -37,11 +37,11 @@ Glossary distribution, and installation of libraries and applications. pkg_resources - A module which ships with :term:`setuptools` that provides an API - for addressing "asset files" within Python packages. Asset - files are static files, template files, etc; basically anything - non-Python-source that lives in a Python package can be considered - a asset file. See also `PkgResources + A module which ships with :term:`setuptools` that provides an API for + addressing "asset files" within a Python :term:`package`. Asset files + are static files, template files, etc; basically anything + non-Python-source that lives in a Python package can be considered a + asset file. See also `PkgResources <http://peak.telecommunity.com/DevCenter/PkgResources>`_ asset @@ -60,6 +60,11 @@ Glossary A directory on disk which contains an ``__init__.py`` file, making it recognizable to Python as a location which can be ``import`` -ed. + module + A Python source file; a file on the filesystem that typically ends with + the extension ``.py`` or ``.pyc``. Modules often live in a + :term:`package`. + project (Setuptools/distutils terminology). A directory on disk which contains a ``setup.py`` file and one or more Python packages. The |
