1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| ó
| V\¬Qc @ s? d Z d d l m Z m Z d d Z d d d YZ d S( s8 Check for errs in the AST.
|
| The Python parser does not catch all syntax errors. Others, like
| assignments with invalid targets, are caught in the code generation
| phase.
|
| The compiler package catches some errors in the transformer module.
| But it seems clearer to write checkers that use the AST to detect
| errors.
| iÿÿÿÿ( t astt walkc C s |
|