Re: [IronPython] Visual Studio Integration

2006-02-10 Thread Aaron Marten
No, extensibility (addins & VSPackages) is not supported on any of the Visual Studio Express products. You’ll need at least VS Standard Edition.   Thanks, Aaron Marten   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ernst, Nathan Sent: Friday, February 10, 2006

Re: [IronPython] Visual Studio Integration

2006-02-10 Thread Ernst, Nathan
I apologize if this is covered in the VS SDK docs, but does the ironpython integration work on the express editions of VS?   Thanks, Nathan   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dino Viehland Sent: Friday, February 10, 2006 10:55 AM To: Discussion of

Re: [IronPython] Visual Studio Integration

2006-02-10 Thread Dino Viehland
Our VSIP team’s SDK includes a sample that integrates IronPython into VS.  Aaron Marten has blogged about this here: http://blogs.msdn.com/aaronmar/ - but I don’t think it’s quite as easy as downloading a IronPython Express SKU just yet…   I also don’t know if we have all the niceties you

Re: [IronPython] eval('123.456E-19')*2.0

2006-02-10 Thread Dino Viehland
Thanks for the bug report, I'll get it filed and it seems like we should be able to get this one fixed for the next release. This is just a problem with displaying the actual value to its full precision. For example: print '%g' % (eval('123.456E-19')*2) Prints: 2.46912e-17 so the value is t

Re: [IronPython] Understanding the code

2006-02-10 Thread Dino Viehland
The mailing list would be a great place for this – simply because it’d be nice if we could archive it rather than losing the data.    The reason for Ops (and other classes being generated) is usually because they’d be a bunch of copy & paste code that would have to be maintained by hand.

Re: [IronPython] Understanding the code

2006-02-10 Thread Jeremy Stell-Smith
no, I have the source, I'm going through it, but a combination of going through the source, and using reflector to change the IL back to csharp seems to be working, if slow.On 2/9/06, J. Merrill <[EMAIL PROTECTED]> wrote: You know that the source code from IronPython is available, don't you?  So y

[IronPython] Visual Studio Integration

2006-02-10 Thread Eric Larson
I was curious how/if I can use Visual Studio 2005 with IronPython. I realize that I probably *can* use it of course, but I was wondering about the obvious niceties such as intellisense and code highlighting. Great Stuff! Eric ___ users mailing list users@

[IronPython] Bug in engine.LoadAssembly(...) -> PythonImportError

2006-02-10 Thread Stanislas Pinte
Hello, I have troubles importing classes defined in my own assembly: [Release]> ./TestImport.exe Unhandled Exception: IronPython.Runtime.PythonImportError: No module named Other at IronPython.Runtime.ReflectedMethodBase.Invoke(MethodBinding binding) .. at TestAccessOtherNamespace.Initiali

[IronPython] eval('123.456E-19')*2.0

2006-02-10 Thread HEMMI, Shigeru
Hello, There seems to be a bug. IronPython 1.0.2223 (Beta) on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> eval('123.456E-19')*2.0 0.0 C:\MagnaFIM\license>python Python 2.4.2 (#67, Sep 28 2005, 12:41:11) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyri