diff options
| author | tarek <none@none> | 2009-11-11 22:22:00 +0100 |
|---|---|---|
| committer | tarek <none@none> | 2009-11-11 22:22:00 +0100 |
| commit | 5e506639b211f4c30b3f77b060bd394262201c1a (patch) | |
| tree | f2d52fe2d24fc2e3bc81ec42d92751e37c76b01f | |
| parent | 6b23a07b6263fe86a7e1cdd790e850508e8d1530 (diff) | |
| download | python-setuptools-git-5e506639b211f4c30b3f77b060bd394262201c1a.tar.gz | |
fixed doc - fixes #86
--HG--
branch : distribute
extra : rebase_source : b7578a6884f1f24f52f16ec22b5d57d1aecb2a82
| -rw-r--r-- | docs/pkg_resources.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/pkg_resources.txt b/docs/pkg_resources.txt index 049082c8..480f9547 100644 --- a/docs/pkg_resources.txt +++ b/docs/pkg_resources.txt @@ -1594,8 +1594,9 @@ Parsing Utilities ``Requirement`` string, as a distribution name, or a PyPI project name. All non-alphanumeric runs are condensed to single "-" characters, such that a name like "The $$$ Tree" becomes "The-Tree". Note that if you are - generating a filename from this value you should replace the "-" characters - with underscores ("_") because setuptools and the distutils + generating a filename from this value you should combine it with a call to + ``to_filename()`` so all dashes ("-") are replaced by underscores ("_"). + See ``to_filename()``. ``safe_version(version)`` Similar to ``safe_name()`` except that spaces in the input become dots, and @@ -1708,7 +1709,7 @@ History * Fix cache dir defaults on Windows when multiple environment vars are needed to construct a path. - + 0.6c4 * Fix "dev" versions being considered newer than release candidates. |
