History log of /external/python/cpython2/Lib/test/test_charmapcodec.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/test_charmapcodec.py
fe4b34cc4b3d4c91497460d64c8ed1fe7a983689 19-Feb-2006 Marc-André Lemburg <mal@egenix.com> Fix the encodings package codec search function to only search
inside its own package. Fixes problem reported in patch #1433198.

Add codec search function for codec test codec.
/external/python/cpython2/Lib/test/test_charmapcodec.py
21d3a32b99c5763444c34c189ef653ac9745f3c4 01-May-2003 Walter Dörwald <walter@livinglogic.de> Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest()
and use it wherever possible.

Also don't use "from test.test_support import ...", but
"from test import test_support" in a few spots.

From SF patch #662807.
/external/python/cpython2/Lib/test/test_charmapcodec.py
bb2734ab65970eba1d361932f12843799496d1ea 14-Feb-2003 Walter Dörwald <walter@livinglogic.de> Port test_charmapcodec to PyUnit. From SF patch #662807
/external/python/cpython2/Lib/test/test_charmapcodec.py
84cc9bf722a6261fe6603e67cde38784e533e8b9 23-Aug-2001 Finn Bock <bckfnn@worldonline.dk> Committing and closing SF patch #441348 to help Jython to pass this test.
/external/python/cpython2/Lib/test/test_charmapcodec.py
d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791 18-Jan-2001 Tim Peters <tim.peters@gmail.com> Whitespace normalization. Leaving tokenize_tests.py alone for now.
/external/python/cpython2/Lib/test/test_charmapcodec.py
d2ebe8775e03c90539bc820c275d18a413c36a18 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> Changed name of codec to full path name. This allows importing
the test_charmapcodec test via the test package.
/external/python/cpython2/Lib/test/test_charmapcodec.py
ef34274d3bec2ac513f6e67bca9eb2ecda5a0cd4 10-Jan-2001 Marc-André Lemburg <mal@egenix.com> Moved the test codec definition to a new module and updated the test and
codec to test all charmap codec features.

As side-effect of moving the test codec into a new module, the encodings
package codec import mechanism is checked as well.
/external/python/cpython2/Lib/test/test_charmapcodec.py
1109db443efdc2451a01c3734c08fc224e9afa7e 06-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch adds a new feature to the builtin charmap codec:

the mapping dictionaries can now contain 1-n mappings, meaning
that character ordinals may be mapped to strings or Unicode object,
e.g. 0x0078 ('x') -> u"abc", causing the ordinal to be replaced by
the complete string or Unicode object instead of just one character.

Another feature introduced by the patch is that of mapping oridnals to
the emtpy string. This allows removing characters.

The patch is different from patch #103100 in that it does not cause a
performance hit for the normal use case of 1-1 mappings.

Written by Marc-Andre Lemburg, copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_charmapcodec.py