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 vstinner
Recipients Ramchandra Apte, lemburg, pitrou, r.david.murray, threewestwinds, vstinner
Date 2011-12-07.14:16:29
SpamBayes Score 0.019719347
Marked as misclassified No
Message-id <1323267390.05.0.0220374135529.issue13545@psf.upfronthosting.co.za>
In-reply-to
Content
Can you try to patch platform.py with the following patch?


diff --git a/Lib/platform.py b/Lib/platform.py
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -186,7 +186,7 @@ def libc_ver(executable=sys.executable,l
         elif so:
             if lib != 'glibc':
                 lib = 'libc'
-                if soversion > version:
+                if soversion and soversion > version:
                     version = soversion
                 if threads and version[-len(threads):] != threads:
                     version = version + threads
History
Date User Action Args
2011-12-07 14:16:30vstinnersetrecipients: + vstinner, lemburg, pitrou, r.david.murray, Ramchandra Apte, threewestwinds
2011-12-07 14:16:30vstinnersetmessageid: <1323267390.05.0.0220374135529.issue13545@psf.upfronthosting.co.za>
2011-12-07 14:16:29vstinnerlinkissue13545 messages
2011-12-07 14:16:29vstinnercreate