summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-01-18 15:55:51 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-01-18 15:55:51 (GMT)
commit5303a968080bdb2690eaab89495ae51939fa6397 (patch)
tree17eb4480eae47c260b3b8cc1a0ba6cd5bca13b74 /Doc/whatsnew
parent84a9931b199fe5338969910f6cf9eb1bbe6a9bda (diff)
downloadcpython-5303a968080bdb2690eaab89495ae51939fa6397.zip
cpython-5303a968080bdb2690eaab89495ae51939fa6397.tar.gz
cpython-5303a968080bdb2690eaab89495ae51939fa6397.tar.bz2
Add CJK codecs
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew24.tex14
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex
index b7e404b..f435b87 100644
--- a/Doc/whatsnew/whatsnew24.tex
+++ b/Doc/whatsnew/whatsnew24.tex
@@ -309,6 +309,20 @@ details.
for improved performance.
(Contributed by Dmitry Vasiliev.)
+\item The CJKCodecs collections of East Asian codecs, maintained
+by Hye-Shik Chang, was integrated into 2.4.
+The new encodings are:
+
+\begin{itemize}
+ \item Chinese (PRC): gb2312, gbk, gb18030, hz
+ \item Chinese (ROC): big5, cp950
+ \item Japanese: cp932, shift-jis, shift-jisx0213, euc-jp,
+euc-jisx0213, iso-2022-jp, iso-2022-jp-1, iso-2022-jp-2,
+ iso-2022-jp-3, iso-2022-jp-ext
+ \item Korean: cp949, euc-kr, johab, iso-2022-kr
+\end{itemize}
+
+
\item The \module{heapq} module has been converted to C. The resulting
ten-fold improvement in speed makes the module suitable for handling
high volumes of data.