diff options
author | Collin Winter <collinw@gmail.com> | 2007-07-17 00:39:32 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-07-17 00:39:32 (GMT) |
commit | dc40ae6b24c90e649112f25acfbee2ce95ef727c (patch) | |
tree | ea71728061f1957fb4449a20f0301ac23a7c0149 /Lib/distutils/version.py | |
parent | 2c8fef07f68e49ac88195b429fb7a692ee9cc5cf (diff) | |
download | cpython-dc40ae6b24c90e649112f25acfbee2ce95ef727c.zip cpython-dc40ae6b24c90e649112f25acfbee2ce95ef727c.tar.gz cpython-dc40ae6b24c90e649112f25acfbee2ce95ef727c.tar.bz2 |
Fix two bugs from the map->itertools.imap switch.
Diffstat (limited to 'Lib/distutils/version.py')
-rw-r--r-- | Lib/distutils/version.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/distutils/version.py b/Lib/distutils/version.py index de20e21..96b6552 100644 --- a/Lib/distutils/version.py +++ b/Lib/distutils/version.py @@ -306,11 +306,11 @@ class LooseVersion (Version): # from the parsed tuple -- so I just store the string here for # use by __str__ self.vstring = vstring - components = filter(lambda x: x and x != '.', - self.component_re.split(vstring)) - for i in range(len(components)): + components = [x for x in self.component_re.split(vstring) + if x and x != '.'] + for i, obj in enumerate(components): try: - components[i] = int(components[i]) + components[i] = int(obj) except ValueError: pass |