perky 03/05/29 00:58:14
Modified: tests test_mapping_johab.py
Log:
Mention about why we ignore WON SIGN mapping here.
Revision Changes Path
1.2 +5 -1 cjkcodecs/tests/test_mapping_johab.py
Index: test_mapping_johab.py
===================================================================
RCS file: /cvsroot/koco/cjkcodecs/tests/test_mapping_johab.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_mapping_johab.py 29 May 2003 07:33:44 -0000 1.1
+++ test_mapping_johab.py 29 May 2003 07:58:13 -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_mapping_johab.py,v 1.1 2003/05/29 07:33:44 perky Exp $
+# $Id: test_mapping_johab.py,v 1.2 2003/05/29 07:58:13 perky Exp $
#
from test import test_support
@@ -44,6 +44,10 @@
unittest.TestCase):
encoding = 'johab'
mapfilename = 'JOHAB.TXT'
+ # KS X 1001 standard assigned 0x5c as WON SIGN.
+ # but, in early 90s that is the only era used johab widely,
+ # the most softwares implements it as REVERSE SOLIDUS.
+ # So, we ignore the standard here.
pass_enctest = [('\\', u'\u20a9')]
pass_dectest = [('\\', u'\u20a9')]
|