Message148968
| 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 |
|