summaryrefslogtreecommitdiff
path: root/converters/py-iconv/files/patch-iconvcodec.py
diff options
context:
space:
mode:
Diffstat (limited to 'converters/py-iconv/files/patch-iconvcodec.py')
-rw-r--r--converters/py-iconv/files/patch-iconvcodec.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/converters/py-iconv/files/patch-iconvcodec.py b/converters/py-iconv/files/patch-iconvcodec.py
deleted file mode 100644
index 17d8681a4191..000000000000
--- a/converters/py-iconv/files/patch-iconvcodec.py
+++ /dev/null
@@ -1,15 +0,0 @@
---- iconvcodec.py.orig Sat Dec 22 08:04:10 2001
-+++ iconvcodec.py Sat Dec 22 08:04:31 2001
-@@ -3,11 +3,7 @@
- # First we need to find out what the Unicode code set name is
- # in this iconv implementation
-
--if sys.platform.startswith("linux"):
-- unicodename = "unicode"+sys.byteorder
--else:
-- # may need to try UCS-2, UCS-2-LE/BE, Unicode, ...
-- raise ImportError,"cannot establish name of 2-byte Unicode"
-+unicodename = "ucs-2-internal"
-
- class Codec(codecs.Codec):
- def __init__(self):