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
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
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
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
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
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
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
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
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
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
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
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
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
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
14 matches
Mail list logo