View | Details | Raw Unified | Return to bug 31508 | Differences between
and this patch

Collapse All | Expand All

(-)textproc/py-4suite/files/patch-Lib-Uuid.py (+11 lines)
Added Link Here
1
--- Lib/Uuid.py.or	Fri Aug 10 01:28:49 2001
2
+++ Lib/Uuid.py	Sun Jan  6 01:56:54 2002
3
@@ -64,7 +64,7 @@
4
     newUuid = ''
5
     curUuid = uuid
6
     for ctr in range(16):
7
-        num = int(curUuid & 0xF)
8
+        num = int(curUuid & 0xFF)
9
         newChar = chr(num)
10
         curUuid = curUuid >> 8
11
         newUuid = newChar + newUuid

Return to bug 31508