Raised if the compiler encountered a situation where it just doesn't make sense to further process the code. Any block that raises such an exception is not further processed.
| 291 | |
| 292 | |
| 293 | class CompilerExit(Exception): |
| 294 | """Raised if the compiler encountered a situation where it just |
| 295 | doesn't make sense to further process the code. Any block that |
| 296 | raises such an exception is not further processed. |
| 297 | """ |
| 298 | |
| 299 | |
| 300 | class CodeGenerator(NodeVisitor): |