summaryrefslogtreecommitdiff
path: root/textproc/py-4suite/files/patch-Lib-Uuid.py
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/py-4suite/files/patch-Lib-Uuid.py')
-rw-r--r--textproc/py-4suite/files/patch-Lib-Uuid.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/textproc/py-4suite/files/patch-Lib-Uuid.py b/textproc/py-4suite/files/patch-Lib-Uuid.py
deleted file mode 100644
index 69e40198002a..000000000000
--- a/textproc/py-4suite/files/patch-Lib-Uuid.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- Lib/Uuid.py.orig Fri Aug 10 07:28:49 2001
-+++ Lib/Uuid.py Mon Jan 7 14:49:45 2002
-@@ -64,7 +64,7 @@
- newUuid = ''
- curUuid = uuid
- for ctr in range(16):
-- num = int(curUuid & 0xF)
-+ num = int(curUuid & 0xFF)
- newChar = chr(num)
- curUuid = curUuid >> 8
- newUuid = newChar + newUuid