Home | History | Annotate | Download | only in compiler

Lines Matching refs:lnotab

506         self.lnotab = lnotab = LineAddrTable()
510 lnotab.addCode(self.opnum[opname])
514 lnotab.nextLine(oparg)
518 lnotab.addCode(self.opnum[opname], lo, hi)
540 self.lnotab.getCode(), self.getConsts(),
542 self.filename, self.name, self.lnotab.firstline,
543 self.lnotab.getTable(), tuple(self.freevars),
588 """lnotab
590 This class builds the lnotab, which is documented in compile.c.
594 added to lnotab. (In some cases, multiple two-byte entries are
608 self.lnotab = []
624 # increasing bytecode address (lnotab is unsigned char).
634 push = self.lnotab.append
651 return ''.join(map(chr, self.lnotab))