Re: [IronPython] Intellisense with imported dlls

2011-05-12 Thread Bill Dines
Hi Raj, You could try adding the .dlls to the GAC. I think this works with PTVS, but not sure if it works with the tools bundled with IP 2.7. If you are using the bundled tools it sounds like you should probably consider changing to PTVS anyway. FYI, I have added a feature request for PTVS for

[IronPython] clr.ImportExtensions are not available outside module ?

2011-05-12 Thread daniel kottow
Hi, Just as Dave Wald, I have also trying out the ImportExtensions methods which I personally find very useful, thank you for implementing. Everything is working fine on using 2.7 (and .net 4), but extension methods loaded by one module seem not available on another... I will stick to

Re: [IronPython] clr.ImportExtensions are not available outside module ?

2011-05-12 Thread Dino Viehland
Daniel wrote: Just as Dave Wald, I have also trying out the ImportExtensions methods which I personally find very useful, thank you for implementing. Everything is working fine on using 2.7 (and .net 4), but extension methods loaded by one module seem not available on another... This is by

Re: [IronPython] clr.ImportExtensions are not available outside module ?

2011-05-12 Thread daniel kottow
Ok. I am not sure what you mean by similar to import clr, though. Because in my example, clr is available from outside test; its just named test.clr... Let me give you another example which is closer on how I ran into this... Lets say you have in C#: --- iron.Example.cs namespace iron {

Re: [IronPython] clr.ImportExtensions are not available outside module ?

2011-05-12 Thread Dino Viehland
Daniel wrote: Ok. I am not sure what you mean by similar to import clr, though. It's similar to import clr in that importing clr not only gives you the clr module but also makes .NET members available to the module which imported clr. For example before doing import clr calling .ToString() on

[IronPython] pytest results in unsupported PythonDictionary system error

2011-05-12 Thread Piotr Nestorow
Hi This is for IronPython 2.7 Pytest 2.0.3 installed in site-packages Running a test with pytest results in the following system error: SystemError: Unsupported param dictionary type: IronPython.Runtime.PythonDictionary Any ideas what the problem is?

Re: [IronPython] pytest results in unsupported PythonDictionary system error

2011-05-12 Thread Dino Viehland
Piotr wrote: Hi This is for IronPython 2.7 Pytest 2.0.3 installed in site-packages Running a test with pytest results in the following system error: SystemError: Unsupported param dictionary type: IronPython.Runtime.PythonDictionary Any ideas what the problem is?

Re: [IronPython] Intellisense with imported dlls

2011-05-12 Thread Raghavendra Chandrashekara
Hi Bill, Thanks for the tip. This is what I'm doing for now. Raj On 2011-05-12, at 4:05 AM, Bill Dines wdi...@longview.com wrote: Hi Raj, You could try adding the .dlls to the GAC. I think this works with PTVS, but not sure if it works with the tools bundled with IP 2.7. If you are