]> granicus.if.org Git - python/commitdiff
Python part of the UTF-7 codec by Brian Quinlan.
authorMarc-André Lemburg <mal@egenix.com>
Thu, 20 Sep 2001 12:56:14 +0000 (12:56 +0000)
committerMarc-André Lemburg <mal@egenix.com>
Thu, 20 Sep 2001 12:56:14 +0000 (12:56 +0000)
Lib/encodings/utf_7.py [new file with mode: 0644]

diff --git a/Lib/encodings/utf_7.py b/Lib/encodings/utf_7.py
new file mode 100644 (file)
index 0000000..441a7f7
--- /dev/null
@@ -0,0 +1,27 @@
+""" Python 'utf-7' Codec
+
+Written by Brian Quinlan (brian@sweetapp.com).
+"""
+import codecs
+
+### Codec APIs
+
+class Codec(codecs.Codec):
+
+    # Note: Binding these as C functions will result in the class not
+    # converting them to methods. This is intended.
+    encode = codecs.utf_7_encode
+    decode = codecs.utf_7_decode
+
+class StreamWriter(Codec,codecs.StreamWriter):
+    pass
+        
+class StreamReader(Codec,codecs.StreamReader):
+    pass
+
+### encodings module API
+
+def getregentry():
+
+    return (Codec.encode,Codec.decode,StreamReader,StreamWriter)
+