Re: [IronPython] Ignoring dont_inherit compiler flag

2006-05-08 Thread Martin Maly
Thanks for the bug report! Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrzej Krzywda Sent: Monday, May 08, 2006 8:09 AM To: users@lists.ironpython.com Subject: [IronPython] Ignoring dont_inherit compiler flag Hi, IronPython ignores the

[IronPython] Ignoring dont_inherit compiler flag

2006-05-08 Thread Andrzej Krzywda
Hi, IronPython ignores the dont_inherit compiler flag: IronPython Beta 6: >>> from __future__ import division >>> exec(compile("print 2/3", "", "exec", 0, 1), {}) 0.6667 CPython: >>> from __future__ import division >>> exec(compile("print 2/3", "", "exec", 0, 1), {}) 0 Andrzej Kr