diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-10-06 20:38:08 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-10-06 20:38:08 -0400 |
commit | cbb647eaadba2b0061f0b3f553a8c89f51e2ce94 (patch) | |
tree | c5e02104498ca1e7232f4b5c79e0bbee19faa347 /setuptools/__init__.py | |
parent | e91d5d084d88f04df24118c861bbdf4ff0c03d97 (diff) | |
download | python-setuptools-git-feature/sic-versions-in-commands.tar.gz |
Add doctest for normalize_versionfeature/sic-versions-in-commands
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r-- | setuptools/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index c75cca56..26276d98 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -1,4 +1,9 @@ -"""Extensions to the 'distutils' for large or complex distributions""" +"""Extensions to the 'distutils' for large or complex distributions + + +>>> normalize_version(sic('0.1.2.rc.0')) +'0.1.2.rc.0' +""" from fnmatch import fnmatchcase import functools |