| 1 | \declaremodule{standard}{email.charset}
|
|---|
| 2 | \modulesynopsis{Character Sets}
|
|---|
| 3 |
|
|---|
| 4 | This module provides a class \class{Charset} for representing
|
|---|
| 5 | character sets and character set conversions in email messages, as
|
|---|
| 6 | well as a character set registry and several convenience methods for
|
|---|
| 7 | manipulating this registry. Instances of \class{Charset} are used in
|
|---|
| 8 | several other modules within the \module{email} package.
|
|---|
| 9 |
|
|---|
| 10 | Import this class from the \module{email.charset} module.
|
|---|
| 11 |
|
|---|
| 12 | \versionadded{2.2.2}
|
|---|
| 13 |
|
|---|
| 14 | \begin{classdesc}{Charset}{\optional{input_charset}}
|
|---|
| 15 | Map character sets to their email properties.
|
|---|
| 16 |
|
|---|
| 17 | This class provides information about the requirements imposed on
|
|---|
| 18 | email for a specific character set. It also provides convenience
|
|---|
| 19 | routines for converting between character sets, given the availability
|
|---|
| 20 | of the applicable codecs. Given a character set, it will do its best
|
|---|
|
|---|