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: [email protected] Subject: [IronPython] Ignoring dont_inherit compiler flag Hi, IronPython ignores the dont_inherit compiler flag: IronPython Beta 6: >>> from __future__ import division >>> exec(compile("print 2/3", "<string>", "exec", 0, 1), {}) 0.666666666667 CPython: >>> from __future__ import division >>> exec(compile("print 2/3", "<string>", "exec", 0, 1), {}) 0 Andrzej Krzywda _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
