mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Python part of the UTF-7 codec by Brian Quinlan.
This commit is contained in:
parent
6871f6ac57
commit
35b0cb09d7
1 changed files with 27 additions and 0 deletions
27
Lib/encodings/utf_7.py
Normal file
27
Lib/encodings/utf_7.py
Normal file
|
|
@ -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)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue