Re: Bug in Boolean.pmc

2005-05-09 Thread Juergen Boemmels
On Friday 06 May 2005 18:17, John Lenz wrote: > Hi, the following test fails because boolean.pmc actually registers the > global True as a false boolean, and no boolean for False. It is fixed with > the patch below. > > John > > > find_global P0, "True" > find_global P1, "False" > >

Re: Bug in Boolean.pmc

2005-05-06 Thread Leopold Toetsch
John Lenz <[EMAIL PROTECTED]> wrote: > Hi, the following test fails because boolean.pmc actually registers the > global True as a false boolean, and no boolean for False. It is fixed with > the patch below. Thanks, applied (modulo the init for false, which is 0 already). > John leo

Bug in Boolean.pmc

2005-05-06 Thread John Lenz
Hi, the following test fails because boolean.pmc actually registers the global True as a false boolean, and no boolean for False. It is fixed with the patch below. John find_global P0, "True" find_global P1, "False" if P0, L1 print "Error, True is not true" L1: unless P1, L2