Changes between Initial Version and Version 1 of Ticket #1159, comment 5


Ignore:
Timestamp:
2010-08-09T00:20:35Z (14 years ago)
Author:
zooko
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1159, comment 5

    initial v1  
    3434That might be our only hope -- the word "project" isn't already used to mean something else within Python, so maybe we could start consistently using it to mean all-versions-of the source that is used to produce distributions (each of which has a version number).
    3535
    36 By the way I think that Brian in comment:3 is showing that he is confused about the difference between distributions (sometimes called packages, especially by the rest of the world outside of Python), packages (directories that have {{{__init__.py}}} files in them, and modules (importable bundles of Python code). The {{{pkg_resources}}} API is intended to express a dependency on a project, i.e. a range (possibly "any") of versions of distributions of that project. (Note the name begins with "pkg", which stands for "distribution". Ha ha.)
     36By the way I think that Brian in comment:3 is showing that he is confused about the difference between distributions (sometimes called packages, especially by the rest of the world outside of Python), packages (directories that have {{{__init__.py}}} files in them), and modules (importable bundles of Python code). The {{{pkg_resources}}} API is intended to express a dependency on a project, i.e. a range (possibly "any") of versions of distributions of that project. (Note the name begins with "pkg", which stands for "distribution". Ha ha.)
    3737
    3838David-Sarah wrote in comment:2: