[KoCo-CVS] [Commit] cjkcodecs/tests test_encoding_euc_jisx0213.py
Brought to you by:
perky
|
From: Hye-Shik C. <pe...@us...> - 2003-07-12 15:28:53
|
perky 03/07/12 08:28:50
Modified: tests test_encoding_euc_jisx0213.py
Log:
EUC-JISX0213 can encode « and »
Revision Changes Path
1.2 +5 -1 cjkcodecs/tests/test_encoding_euc_jisx0213.py
Index: test_encoding_euc_jisx0213.py
===================================================================
RCS file: /cvsroot/koco/cjkcodecs/tests/test_encoding_euc_jisx0213.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_encoding_euc_jisx0213.py 12 Jul 2003 12:42:48 -0000 1.1
+++ test_encoding_euc_jisx0213.py 12 Jul 2003 15:28:50 -0000 1.2
@@ -27,7 +27,7 @@
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-# $Id: test_encoding_euc_jisx0213.py,v 1.1 2003/07/12 12:42:48 perky Exp $
+# $Id: test_encoding_euc_jisx0213.py,v 1.2 2003/07/12 15:28:50 perky Exp $
#
from test import test_support
@@ -48,6 +48,10 @@
("abc\x8f\x83\x83", "replace", u"abc\ufffd"),
("\xc1\x64", "strict", None),
("\xa1\xc0", "strict", u"\uff3c"),
+ )
+ xmlcharnametest = (
+ u"\xab\u211c\xbb = \u2329\u1234\u232a",
+ "\xa9\xa8ℜ\xa9\xb2 = ⟨ሴ⟩"
)
def test_main():
|