summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multibytecodec_support.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
|
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+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.
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-2/+2
|
* Issue #12016: Add test_errorhandle() to TestBase_Mapping ofVictor Stinner2011-06-031-4/+38
| | | | | test_multibytecodec_support. Improve also error message of the test_errorhandle() of TestBase.
* Issue #12057: Add tests for ISO 2022 codecsVictor Stinner2011-05-301-1/+3
| | | | iso2022_jp, iso2022_jp_2 and iso2022_kr
* Issue #12057: Fix .hgeol and test_multibytecodec_support for the conversion ofVictor Stinner2011-05-171-5/+12
| | | | the CJK encoding testcase BLOB into multiple text files.
* Merged revisions 85503 via svnmerge fromAntoine Pitrou2010-10-141-27/+29
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85503 | antoine.pitrou | 2010-10-15 00:11:44 +0200 (ven., 15 oct. 2010) | 2 lines More proper closing of files ........
* #7793: Fix RuntimeError when running "regrtest -R" for multibyte codecs.Florent Xicluna2010-02-271-18/+3
|
* #7092: Silence more py3k warnings. Patch by Florent Xicluna.Ezio Melotti2010-02-031-1/+1
|
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-1/+1
| | | | mistake. ( It may come in for sure tough)
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵Senthil Kumaran2010-01-081-1/+1
| | | | Patch by flox
* When open_urlresource() fails, HTTPException is another possible errorAntoine Pitrou2009-11-261-1/+2
|
* Hum, test skipping when the URL isn't reachable hadn't been applied to trunk.Antoine Pitrou2009-11-011-1/+4
|
* revert creation of the html.entities and html.parser modulesFred Drake2008-05-201-1/+1
| | | | (http://bugs.python.org/issue2882)
* update references and documentation for modules in the new html packageFred Drake2008-05-171-1/+1
| | | | (http://bugs.python.org/issue2882)
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
|
* Update big5hkscs codec to conform to the HKSCS:2004 revision.Hye-Shik Chang2008-02-081-2/+10
|
* Fix gb18030 codec's bug that doesn't map two-byte characters onHye-Shik Chang2007-08-041-1/+15
| | | | GB18030 extension in encoding. (bug reported by Bjorn Stabell)
* Allow long objects as a position value of error callbacks returned.Hye-Shik Chang2006-03-261-1/+14
|
* Patch #1443155: Add the incremental codecs support for CJK codecs.Hye-Shik Chang2006-03-261-56/+141
| | | | (reviewed by Walter Dörwald)
* Patch #1276356: Implement new resource "urlfetch" for regrtest.Hye-Shik Chang2005-12-101-17/+5
| | | | | 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-8/+3
| | | | | | 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-07-081-1/+1
|
* Look for the multibyte codec map files in the parent directory tooNeal Norwitz2004-06-061-2/+7
| | | | | This is similar to test_normalization, so that many source trees can reference the same test file(s).
* 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/+233
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!