summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compiler.py
Commit message (Collapse)AuthorAgeFilesLines
* Tell unittest that source files with "badsyntax" in their names shouldTim Peters2004-08-081-1/+5
| | | | | raise SyntaxError. test_compiler passes now on WinXP, at least in a release-build non-O run.
* Renamed locals to better reflect their meanings.Tim Peters2004-08-081-6/+6
|
* In verbose mode, display the name of each file before trying to compileTim Peters2004-08-081-1/+4
| | | | | it. Else when this fails, there's no way to tell which file it was chewing on.
* Whitespace normalization.Tim Peters2004-08-081-3/+0
|
* Add a trivial test for the compiler package, guarded by compiler resource.Jeremy Hylton2004-08-071-0/+34
This test is insanely slow, so it requires a resource. On my machine, it also appears to dump core. I think the problem is a stack overflow, but haven't been able to confirm.