Yeah, everything suddenly worked again.
On Wed, Jun 10, 2009 at 3:54 PM, Curt Hagenlocher wrote:
> Sounds strange. Did reinstallation of the SDK solve your problem?
>
> On Mon, Jun 8, 2009 at 6:43 PM, Justin Regele wrote:
>
>> Last week I moved a python application into IronPython and under
>>
Sounds strange. Did reinstallation of the SDK solve your problem?
On Mon, Jun 8, 2009 at 6:43 PM, Justin Regele wrote:
> Last week I moved a python application into IronPython and under IronPython
> studio I was building and debugging and everything just worked. But today I
> was getting errors
Through the hosting API, it's something like this:
engine = IronPython.Hosting.Python.CreateEngine()
source = engine.CreateScriptSourceFromString(text, SourceCodeKind.File)
errors = ErrorListener()
command = source.Compile(errors)
if command is None:
# compilation failed
Here, ErrorListener i
Hi,
What's the best way to check syntax of IronPython source code without
actually running it?
I'd like to embed IronPython to application and make it as user
friendly as possible, so all checking before running the code would be
helpful.
There are many options listed here for CPython:
http:/
Replace the /x with /z:
Chiron.exe /d:app /z:app.xap /r:app/dependencies
Looking at Chiron.exe help:
/x[ap]:
Specifies XAP file to generate
Does not start the web server, cannot be combined with /w or /b
...
/z[ipdlr]:
Like /x, but includes files needed for dynamic language apps
This is an automated email letting you know that sources
have recently been pushed out. You can download these newer
sources directly from
http://ironpython.codeplex.com/SourceControl/changeset/view/54434.
DELETED SOURCES
$/IronPython/IronPython_Main/Lib
MODIFIED SOURCES
$/Ir
Seo Sanghyeon wrote:
FYI.
So IronPython 2.0.1 can now be compiled with Mono? Very cool. Does that
mean we can expect a new FePy release?
Michael
From: Ankit Jain
Date: 2009/6/10
Subject: [Mono-dev] Current 'xbuild' status
Current xbuild status:
It can handle solutions (.sln) now, th
This works fine when the xap is generated in memory with /b from VS 2008 but
how to make it work when creating a real app.xap file?
What I have is this:
root/app/dependencies
chiron is located in the "root". The "app.py" is located in "app" and the
assemblies are located in "dependencies".
The