Message108352
| Author |
ronaldoussoren |
| Recipients |
janssen, ronaldoussoren, skrah, vstinner, yig |
| Date |
2010年06月22日.09:59:41 |
| SpamBayes Score |
0.00024080531 |
| Marked as misclassified |
No |
| Message-id |
<1277200783.58.0.676997879463.issue8621@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Bill, please test the patch below on a 10.5 system:
Index: Lib/uuid.py
===================================================================
--- Lib/uuid.py (revision 82148)
+++ Lib/uuid.py (working copy)
@@ -416,7 +416,7 @@
import sys
if sys.platform == 'darwin':
import os
- if int(os.uname()[2].split('.')[0]) >= 10:
+ if int(os.uname()[2].split('.')[0]) >= 9:
_uuid_generate_random = _uuid_generate_time = None
# On Windows prior to 2000, UuidCreate gives a UUID containing the
This extends the workaround for the bug in the system uuid libraries to OSX 10.5. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年06月22日 09:59:43 | ronaldoussoren | set | recipients:
+ ronaldoussoren, janssen, vstinner, skrah, yig |
| 2010年06月22日 09:59:43 | ronaldoussoren | set | messageid: <1277200783.58.0.676997879463.issue8621@psf.upfronthosting.co.za> |
| 2010年06月22日 09:59:42 | ronaldoussoren | link | issue8621 messages |
| 2010年06月22日 09:59:41 | ronaldoussoren | create |
|