summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecmaps_jp.py
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] Rename test_ file that is really a support file to remove test_ ↵Serhiy Storchaka2017-07-031-6/+6
| | | | | | | | | | prefix. (#2548) I thought I had run the full test suite before the last checkin, but obviously I didn't. test_multibytecodec_support.py isn't really a test file, it is a support file that contains a base test class. Rename it to multibytecodec_support so that regrtest test discovery doesn't think it is a test file that should be run.. (cherry picked from commit 75d9aca97ad3c3d823d2f2211f579454b3216f51)
* #22650: test suite: load Unicode test data files from www.pythontest.netGeorg Brandl2014-11-061-7/+5
|
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-1/+0
| | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface.
* Standardize on test.test_support.run_unittest() (as opposed to a mix of ↵Collin Winter2007-04-251-7/+1
| | | | run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule().
* Remove $CJKCodecs$ RCS tags. The CJKCodecs isn't maintained outsideHye-Shik Chang2006-04-221-1/+0
| | | | anymore.
* Patch #1276356: Implement new resource "urlfetch" for regrtest.Hye-Shik Chang2005-12-101-5/+0
| | | | | This enables even impatient people to run tests that require remote files such as test_normalization and test_codecmaps_*.
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-12/+2
| | | | | | and installed layouts to make maintenance simple and easy. And it also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004 and iso2022-jp-2004.
* Whitespace normalization.Tim Peters2004-01-181-1/+0
|
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-0/+90
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!