summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/utf_7.py
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2001-09-20 12:56:14 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2001-09-20 12:56:14 (GMT)
commit35b0cb09d7077cfe0a7c707249630097406b5f00 (patch)
treeb35220b4a72d667dc79bcbbc047fdc80a8fb954b /Lib/encodings/utf_7.py
parent6871f6ac57baca19facf5b49846b101c60ef3334 (diff)
downloadcpython-35b0cb09d7077cfe0a7c707249630097406b5f00.zip
cpython-35b0cb09d7077cfe0a7c707249630097406b5f00.tar.gz
cpython-35b0cb09d7077cfe0a7c707249630097406b5f00.tar.bz2
Python part of the UTF-7 codec by Brian Quinlan.
Diffstat (limited to 'Lib/encodings/utf_7.py')
-rw-r--r--Lib/encodings/utf_7.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/Lib/encodings/utf_7.py b/Lib/encodings/utf_7.py
new file mode 100644
index 0000000..441a7f7
--- /dev/null
+++ b/Lib/encodings/utf_7.py
@@ -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)
+