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.
| 235 | |
| 236 | |
| 237 | class CompilerExit(Exception): |
| 238 | """Raised if the compiler encountered a situation where it just |
| 239 | doesn't make sense to further process the code. Any block that |
| 240 | raises such an exception is not further processed. |
| 241 | """ |
| 242 | |
| 243 | |
| 244 | class CodeGenerator(NodeVisitor): |