Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #20532: Tests which use _testcapi now are marked as CPython only. | Serhiy Storchaka | 2014-02-07 | 1 | -9/+11 |
| | |||||
* | Don't run the test for issue #16335 when -M is not specified. | Serhiy Storchaka | 2013-01-25 | 1 | -1/+5 |
| | | | | Increase memory limit in this test. | ||||
* | Add bigmemtest decorator to test of issue #16335. | Serhiy Storchaka | 2013-01-21 | 1 | -11/+13 |
| | |||||
* | Fix memory error in test_ucn. | Serhiy Storchaka | 2013-01-21 | 1 | -5/+6 |
| | | | | | unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335. | ||||
* | fix for f4d30d1a529e | Christian Heimes | 2013-01-21 | 1 | -1/+1 |
| | | | | Python 2.7 has only assertRaisesRegexp, not assertRaisesRegex | ||||
* | Issue #16335: Fix integer overflow in unicode-escape decoder. | Serhiy Storchaka | 2013-01-21 | 1 | -0/+16 |
| | |||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -3/+1 |
| | | | | | | | | | | 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. | ||||
* | Whitespace normalization. | Tim Peters | 2003-03-07 | 1 | -1/+1 |
| | |||||
* | Port test_ucn and test_unicodedata to PyUnit. Add a few tests for error | Walter Dörwald | 2003-02-26 | 1 | -141/+138 |
| | | | | | cases increasing coverage in unicodedata.c from 87% to 95% (when the normalization tests are run). From SF patch #662807. | ||||
* | Implement names for CJK unified ideographs. Add name to KeyError output. | Martin v. Löwis | 2002-11-23 | 1 | -4/+16 |
| | | | | Verify that the lookup for an existing name succeeds. | ||||
* | Add test cases for Hangul syllables. Update output. | Martin v. Löwis | 2002-11-23 | 1 | -0/+24 |
| | |||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | Move uchhash functionality into unicodedata (after the recent | Fredrik Lundh | 2001-01-24 | 1 | -7/+8 |
| | | | | | crop of changes, the files are small enough to do this). Also adds "name" and "lookup" functions to unicodedata. | ||||
* | Better error message if ucnhash cannot be found (obscure attribute | Fredrik Lundh | 2001-01-20 | 1 | -0/+9 |
| | | | | | | errors aren't that helpful), or doesn't contain what's expected from it. Also tweaked the test script so it compiles even if ucnhash is missing. | ||||
* | improved the ucnhash test a bit | Fredrik Lundh | 2001-01-19 | 1 | -3/+8 |
| | |||||
* | added "getcode" and "getname" methods to the ucnhash module (they're | Fredrik Lundh | 2001-01-19 | 1 | -0/+17 |
| | | | | | probably more useful for the test code than for any applications, but one never knows...) | ||||
* | refactored the unicodeobject/ucnhash interface, to hide the | Fredrik Lundh | 2001-01-19 | 1 | -8/+6 |
| | | | | | | | implementation details inside the ucnhash module. also cleaned up the unicode copyright blurb a little; Secret Labs' internal revision history isn't that interesting... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -5/+7 |
| | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -14/+13 |
| | |||||
* | New test for the ucnhash module. | Marc-André Lemburg | 2000-06-30 | 1 | -0/+82 |