diff options
author | Georg Brandl <georg@python.org> | 2009-03-28 00:48:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-28 00:48:48 (GMT) |
commit | 5adab304e38efd7132847f47dd932dfd0f2742f6 (patch) | |
tree | 5745fef8f75775d95d537dec94db2571bdd483d7 /Lib | |
parent | 1972d16230da4cbb8f4b25c34913a9f02adb7bc8 (diff) | |
download | cpython-5adab304e38efd7132847f47dd932dfd0f2742f6.zip cpython-5adab304e38efd7132847f47dd932dfd0f2742f6.tar.gz cpython-5adab304e38efd7132847f47dd932dfd0f2742f6.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/version.py b/Lib/distutils/version.py index 71a5614..0fb5b6e 100644 --- a/Lib/distutils/version.py +++ b/Lib/distutils/version.py @@ -162,7 +162,7 @@ class StrictVersion (Version): # The rules according to Greg Stein: -# 1) a version number has 1 or more numbers separate by a period or by +# 1) a version number has 1 or more numbers separated by a period or by # sequences of letters. If only periods, then these are compared # left-to-right to determine an ordering. # 2) sequences of letters are part of the tuple for comparison and are |