Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace normalization. | Tim Peters | 2003-02-19 | 1 | -1/+1 |
| | |||||
* | Add tests and news entry about parser errors from bug #678518. | Neal Norwitz | 2003-02-10 | 1 | -0/+17 |
| | |||||
* | Teach the parsermodule about floor division. Fixes | Michael W. Hudson | 2003-01-29 | 1 | -0/+5 |
| | | | | | | [ 676521 ] parser module validation failure bugfix candidate. | ||||
* | Standardize behavior: no docstrings in test functions. | Guido van Rossum | 2002-08-22 | 1 | -5/+7 |
| | |||||
* | 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. :) | ||||
* | Remove some now-obsolete generator future statements. | Tim Peters | 2002-04-01 | 1 | -8/+4 |
| | | | | | I left the email pkg alone; I'm not sure how Barry would like to handle that. | ||||
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 1 | -2/+10 |
| | | | | | allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves. | ||||
* | Use the "st" versions of the "ast" calls in the parser module -- there is | Fred Drake | 2001-07-17 | 1 | -2/+2 |
| | | | | no reason to pretend the syntax trees we're dealing with are abstract. | ||||
* | Added tests for the new yield support in the parser module. | Fred Drake | 2001-07-17 | 1 | -1/+132 |
| | | | | (Should be merged with descr branch.) | ||||
* | Convert the parser module test to use PyUnit. | Fred Drake | 2001-06-04 | 1 | -208/+212 |
| | |||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | 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. | ||||
* | Add more regression tests, including for the import statement variations. | Fred Drake | 2001-01-07 | 1 | -10/+35 |
| | | | | | These will detect regression on SF bug #127271 and other import statement bugs. | ||||
* | Added tests to avoid regression on bug #125375. | Fred Drake | 2000-12-11 | 1 | -1/+20 |
| | | | | | | | | roundtrip(): Show the offending syntax tree when things break; this makes it a little easier to debug the module by adding test cases. (Still need better tests for this module, but there's not enough time today.) | ||||
* | Update the parser module to support augmented assignment. | Fred Drake | 2000-08-25 | 1 | -22/+84 |
| | | | | Add some test cases. | ||||
* | Add a minimal test suite for the parser module. | Fred Drake | 2000-08-21 | 1 | -0/+116 |