Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. :) | ||||
* | Got rid of special case for Macintosh realloc slowdown: Tim fixed the problem. | Jack Jansen | 2002-07-08 | 1 | -2/+1 |
| | |||||
* | Disable the test for importing very long lists for MacPython: it triggers | Jack Jansen | 2002-06-20 | 1 | -1/+2 |
| | | | | | an out-of-memory condition (and a hang on OSX). Filed a bug report (#571845) to make sure this is eventually fixed. | ||||
* | test_module_with_large_stack(): This failed when Python was run with -O, | Tim Peters | 2002-06-15 | 1 | -2/+5 |
| | | | | | trying to delete a .pyc file that didn't exist (it needed to delete .pyo then). | ||||
* | test_module_with_large_stack(): This failed on Windows, for the wrong | Tim Peters | 2002-06-15 | 1 | -1/+1 |
| | | | | reason <wink>: can't unlink an open file on Windows. | ||||
* | Fix SF bug # 561858 Assertion with very long lists | Neal Norwitz | 2002-06-14 | 1 | -0/+31 |
| | | | | | Write 4 bytes for co_stacksize, etc. to prevent writing out bad .pyc files which can cause a crash when read back in. | ||||
* | Verify that the imp can find and load .py files. | Jeremy Hylton | 2002-05-30 | 1 | -0/+5 |
| | |||||
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -3/+3 |
| | |||||
* | Rip the import repr truncation test out of here and put it in test_repr.py | Barry Warsaw | 2001-08-24 | 1 | -35/+0 |
| | |||||
* | Added a test for module repr truncation when the package name is | Barry Warsaw | 2001-08-16 | 1 | -0/+35 |
| | | | | really long. Closes SF bug #437984. | ||||
* | Derived from SF patch #446899 Permit import of .pyw under Windows, from | Tim Peters | 2001-08-04 | 1 | -39/+46 |
| | | | | David Bolen. | ||||
* | s/endswith/startswith/ | Tim Peters | 2001-08-01 | 1 | -1/+1 |
| | |||||
* | Rewritten version of Finn Bock's SF patch #446907 (Allow jython to | Tim Peters | 2001-08-01 | 1 | -1/+4 |
| | | | | complete test_import). | ||||
* | SF bug #422177: Results from .pyc differs from .py | Tim Peters | 2001-05-08 | 1 | -0/+3 |
| | | | | | | | | Store floats and doubles to full precision in marshal. Test that floats read from .pyc/.pyo closely match those read from .py. Declare PyFloat_AsString() in floatobject header file. Add new PyFloat_AsReprString() API function. Document the functions declared in floatobject.h. | ||||
* | Addrf simple test that import is case-sensitive. | Tim Peters | 2001-03-21 | 1 | -1/+10 |
| | |||||
* | Insert the current directory to the front of sys.path -- and remove it | Guido van Rossum | 2000-10-24 | 1 | -0/+5 |
| | | | | | | | | at the end. This fixes a problem where python Lib/test/test_import.py failed while "make test" succeeded. | ||||
* | Adding Jeremy's new test_import (SF patch 101709). | Tim Peters | 2000-10-06 | 1 | -0/+44 |