| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Added array.array to the types repr.py knows about, after a suggestion
from Jurjen N.E. Bos.
|
|
|
|
|
|
|
|
| |
case, the test module created is actually a sub-package of 'test', thus
the module is named 'test.areallylongpackage...' - this caused failure.
Replace the hard-coded module names with __name__ attributes, which
correctly reflects any hierarchy.
|
|
|
|
|
|
|
|
|
|
|
| |
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. :)
|
|
|
|
|
| |
"What's New in Python 2.2" documented that these would be removed in
Python 2.3.
|
|
|
|
| |
order in which the tests are normally run.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
than <type 'ClassName'>. Exception: if it's a built-in type or an
extension type, continue to call it <type 'ClassName>. Call me a
wimp, but I don't want to break more user code than necessary.
|
|
|
|
|
| |
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
|
|
|
|
|
| |
the compiler package generates a module-unique trailing suffix for
each lambda
|
|
|
|
|
|
| |
32 characters per component. This makes mkdir() calls and such fail with EINVAL.
For now I am disabling the test on the Mac, and I'll open a bugreport.
|
|
|
|
| |
a default repr() that's longer than 20 characters.
|
|
|
|
|
|
|
| |
lambda (anonymous functions?), function, xrange, buffer, cell (need to
fill in), and (some) descriptor types.
Also added a new test case for testing repr truncation fixes.
|
| |
|
|
This closes SF patch #440826.
|