IUCompilerCourse / Essentials-of-Compilation

A book about compiling Racket and Python to x86-64 assembly
1.27k stars 137 forks source link

Sect. 2.1.1 / Python: Typo in definition of InterpLvar (p. 15) #170

Open cagix opened 8 months ago

cagix commented 8 months ago

In Sect. 2.1.1, page 15 (Python ed.) there is a typo in definition of InterpLvar: It is defined as function (def InterpLvar(InterpLint):), but should be a class definition instead (class InterpLvar(InterpLint):).