Re: [Ironpython-users] IronPython 2.7.1 Beta 1 now available

2011-06-18 Thread Steve Dower
Seems the link is actually http://ironpython.codeplex.com/releases/view/68588 And a quick note that this doesn't install side-by-side with 2.7 - the earlier version is uninstalled. (I don't see this as an issue, but it was a surprise.) On Sat, Jun 18, 2011 at 22:05, Jeff Hardy wrote: > This is t

Re: [Ironpython-users] Automating Visual Studio with IronPython

2011-06-26 Thread Steve Dower
The MSDN docs show the difference between the two: http://msdn.microsoft.com/en-us/library/envdte.events.solutionevents.aspx http://msdn.microsoft.com/en-us/library/envdte.events.outputwindowevents.aspx In short, OutputWindowEvents takes an (optional) parameter. You don't see this in C# because i

Re: [Ironpython-users] Options for debugger for DLR languages on Mono

2011-09-22 Thread Steve Dower
Dino will know better than I do, but most if not all the C++ code in PTVS is for debugging, but only for attaching to running CPython processes. Otherwise, the debugger is largely based around a 'settrace' script and a C# debug engine communicating through sockets - nothing to do with the DLR. The

Re: [Ironpython-users] Metro Profile support

2011-11-21 Thread Steve Dower
It should 'just work' for desktop apps, maybe some changes to get access to some of WinRT through the .NET projection, though there isn't much worth having unless you're a Metro app. Given IronPython runs on Mono/*nix as-is (ie. lack of PInvokes), there shouldn't be too much preventing it from bei

Re: [Ironpython-users] Scripting Ansys with IronPython - Unable to callvalues from dictionary

2011-11-25 Thread Steve Dower
Probably the keys aren't actually strings but repr() has been overridden. You could copy the dict with dict((repr(key), verifiedValues[key]) for key in verifiedValues) to get one like you expect (though it may add quotes around the key). Or you can print type(verifiedValues.keys()[0]) and see

Re: [Ironpython-users] IronPython 2.7.3 Alpha 1 Available

2012-04-29 Thread Steve Dower
Use http://ironpython.codeplex.com/releases/view/86886 Just a copy-paste issue in the original email (had "edit" instead of "view"). Steve On Mon, Apr 30, 2012 at 03:04, Vernon Cole wrote: > Jeff, we have a problem! > > When I try the download link, I get: > " > > Project Access Violation > > I

Re: [Ironpython-users] Poor performance of a c# - Ironpython application

2012-05-23 Thread Steve Dower
I'll throw in that exceptions are much faster in CPython than IronPython (.NET generally), so if you have any exceptions being thrown you'll want to find ways to avoid (not just handle) them. On Thu, May 24, 2012 at 4:46 AM, Dino Viehland wrote: > This will help with startup, but not necessarily

Re: [Ironpython-users] Set __metaclass__ on .NET type?

2012-06-20 Thread Steve Dower
If you are loading the file with other Python code (either an `exec` or `__import__`) you could use something like: for cls in vars(module): if issubclass(cls, Suite): # do something elif issubclass(cls, Task): # do something Similar things can be done with a ScriptScope in C# as well

Re: [Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Steve Dower
It doesn't currently, but that will probably be a PTVS 2.0 feature. I'm not sure exactly what's involved yet, but I'd guess that all we have to do is invoke MSBuild. You're welcome to code it up yourself and send it in. That will be the quickest way to get it added (and once you're set up to build

Re: [Ironpython-users] Drag and Drop components of WIndows Forms.

2012-10-21 Thread Steve Dower
IronPython Studio is well out of date. Its spiritual successor is Python Tools for Visual Studio (http://pytools.codeplex.com/, which I work on), but unfortunately we don't have designer support for Windows Forms. I guess this is due to a lack of demand, so you can create a request on our issue tr

Re: [Ironpython-users] ANN: Python Tools for Visual Studio 1.5

2012-11-01 Thread Steve Dower
It won't work with the express editions, but you can download the (free) integrated/isolated shell (two downloads, about ~230MB all up) and install into that. The only feature that you'll miss out on is profiling, which requires Premium or higher. If you meant year-versions, PTVS supports VS2010 a

[Ironpython-users] Website Updates

2013-03-11 Thread Steve Dower
I'm not entirely sure who's responsible for updating the website right now, but we'd like to get http://www.ironpython.net/tools/ updated (mostly to avoid having to update it every time we release). That page deep links into one of our pre-1.0 releases and a documentation page ("Walkthrough")th

Re: [Ironpython-users] Website Updates

2013-03-11 Thread Steve Dower
o:vernondc...@gmail.com] Sent: Monday, March 11, 2013 1053 To: Steve Dower Cc: ironpython-users@python.org; Shahrokh Mortazavi Subject: Re: [Ironpython-users] Website Updates I was going to offer to fix that right away, but I cannot seem to find what you are talking about. I am probably looking at th

Re: [Ironpython-users] Install numpy / VS 2010

2016-07-26 Thread Steve Dower
Anyone who wants to encourage the six developers to fix https://bitbucket.org/gutworth/six/issues/135/have-a-fallback-for-sys_getframe-usage-in and/or https://bitbucket.org/gutworth/six/issues/126/deprecate-exec_ would also help, since this (unused) code is what demands -X:Frames. Since it'll