Re: [IronPython] PythonEngine.EvaluateAs and future division

2006-07-28 Thread Martin Maly








Great bug, thanks for reporting it! Ive
filed it on CodePlex as http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPythonWorkItemId=1417













From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kristof Wagemans
Sent: Wednesday, July 26, 2006
9:08 AM
To: 'Discussion of IronPython'
Subject: [IronPython]
PythonEngine.EvaluateAs and future division





The following code gives different results. Is this expected
or a bug?



IronPython.Compiler.Options.Division =
IronPython.Compiler.DivisionOption.New;

PythonEngine _pe = new PythonEngine();

_pe.Execute(result1 = 1/2);

double result1 = Convert.ToDouble(_pe.Globals[result1]);

double result2 =
_pe.EvaluateAsdouble(1/2);



result1 = 0.5

result2 = 0.0






___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


[IronPython] PythonEngine.EvaluateAs and future division

2006-07-26 Thread Kristof Wagemans








The following code gives different results. Is this expected
or a bug?



IronPython.Compiler.Options.Division =
IronPython.Compiler.DivisionOption.New;

PythonEngine _pe = new PythonEngine();

_pe.Execute(result1 = 1/2);

double result1 = Convert.ToDouble(_pe.Globals[result1]);

double result2 =
_pe.EvaluateAsdouble(1/2);



result1 = 0.5

result2 = 0.0






___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com