| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
test_failing_import_sticks -- if an import raises an exception,
ensure that trying to import it again continues raising exceptions
test_failing_reload -- if a module loads OK, but a reload raises an
exception, ensure that the module is still in sys.modules, and
that its __dict__ reflects as much of the reload attempt as
succeeded. That doesn't seem like sane semantics, but it is
backward-compatible semantics <wink>.
|
| |
|
|
| |
riscospath.extsep, and use os.extsep throughout.
|
| |
|
|
|
|
|
|
|
|
|
| |
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. :)
|
| | |
|
| |
|
|
|
| |
an out-of-memory condition (and a hang on OSX). Filed a bug report
(#571845) to make sure this is eventually fixed.
|
| |
|
|
|
| |
trying to delete a .pyc file that didn't exist (it needed to delete .pyo
then).
|
| |
|
|
| |
reason <wink>: can't unlink an open file on Windows.
|
| |
|
|
|
| |
Write 4 bytes for co_stacksize, etc. to prevent writing out
bad .pyc files which can cause a crash when read back in.
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
really long. Closes SF bug #437984.
|
| |
|
|
| |
David Bolen.
|
| | |
|
| |
|
|
| |
complete test_import).
|
| |
|
|
|
|
|
|
| |
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.
|
| | |
|
| |
|
|
|
|
|
|
| |
at the end. This fixes a problem where
python Lib/test/test_import.py
failed while "make test" succeeded.
|
| |
|