comparison python/c3/builder.py @ 194:b01429a5d695

Fixed test
author Windel Bouwman
date Wed, 29 May 2013 22:36:37 +0200
parents 46d62dadd61b
children 8b2f20aae086
comparison
equal deleted inserted replaced
193:f091e7d70996 194:b01429a5d695
20 return 20 return
21 if not self.al.analyzePackage(pkg): 21 if not self.al.analyzePackage(pkg):
22 return 22 return
23 if not self.tc.checkPackage(pkg): 23 if not self.tc.checkPackage(pkg):
24 return 24 return
25
26 # Only return ircode when everything is OK
25 ircode = self.cg.gencode(pkg) 27 ircode = self.cg.gencode(pkg)
26 return ircode 28 return ircode
27 29