summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_scriptpackages.py
Commit message (Collapse)AuthorAgeFilesLines
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-311-1/+2
| | | | | | | return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
* Add import_function method to test.test_support, and modify a number ofR. David Murray2009-03-301-1/+2
| | | | | | | | tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-3/+0
|
* Whitespace normalization.Tim Peters2003-04-241-9/+9
|
* Test SystemEvents too.Jack Jansen2003-04-151-1/+4
|
* Minimal test suite of the generated packages in plat-mac/lib-scriptpackages.Jack Jansen2003-03-281-0/+49
At the moment does little more than testing that the modules import correctly and some classes can be instantiated.