This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pearu
Recipients
Date 2004-02-20.09:52:35
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Under linux `ld -v` returns
  GNU ld version 2.14.90.0.7 20031029 Debian GNU/Linux
for instance, and get_versions() function uses
StrictVersion
on '2.14.90.0.7'. This situation triggers an error:
  ValueError: invalid version number '2.14.90.0.7'

As a fix, either use LooseVersion or the following re
pattern
  result = re.search('(\d+\.\d+(\.\d+)?)',out_string)
in `if ld_exe` block.

Pearu
History
Date User Action Args
2007-08-23 14:20:07adminlinkissue900977 messages
2007-08-23 14:20:07admincreate