Re: [IronPython] IronPython (PythonCodePovider) for ASP.NET?

2006-07-25 Thread Dino Viehland
The first we actually applies more to the world than just MS. This is something that we've shipped w/ the past 2 or 3 betas. The we're is definitely MS / the IronPython team. The main concern is that we are shoe-horning a dynmamic language into a static world and that's not really the right t

Re: [IronPython] Import Bug with 1.0 Beta 9

2006-07-25 Thread Haibo Luo
Thanks for reporting this. I opened a bug at http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=1348. Unfortunately we will unable to fix it in the next release, which will be out soon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Be

Re: [IronPython] Seek fails

2006-07-25 Thread Haibo Luo
Thanks for reporting this. This has been fixed in recent build. You may go to our codeplex site and download the source.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Benoist JAMIN Sent: Saturday, July 22, 2006 1:51 PM To: users@lists.ironpython.com Subject: [Ir

[IronPython] Import Bug with 1.0 Beta 9

2006-07-25 Thread Jesse Granden
Hi,I ran across this while trying to get sqlalchemy working with IronPython.If a package's __init__.py defines a method with the same name as a module in that package, you can't import the module.example: test.py::import foo.bar as bprint bfoo/__init__.py::def bar():passfoo/bar.py::pass

[IronPython] Seek fails

2006-07-25 Thread Benoist JAMIN
I need to get file size. Here’s my Python code: fd = open(“c:\\parser.py”, ‘r’); fd.seek(0, 2); size =fd.tell();   Python returns the correct file size but IronPython returns 0. I had a look at the source code and I would say a bug exists. Does anyone confirm? __

[IronPython] ActiveX Winfowms and IronPython

2006-07-25 Thread Михаил Подгурский
Is there any way to add any ActiveX controls to WinForm in IronPython code? ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] When does data binding occur?

2006-07-25 Thread jeff sacksteder
In my __init__ method, I create a DataGridview and set it's datasource to a BindingSource previously created. If the very last line of my __init__ gets the 'Rows' property of the DGV, it is an empty collection. I can get other attributes( like 'Name') without any problem. If I get 'Rows' from outsi

Re: [IronPython] IronPython (PythonCodePovider) for ASP.NET?

2006-07-25 Thread Will Sadkin
Hi Dino, Please excuse me, as I'm new to this list: I assume "we" in that sentence is Microsoft? (The response provided leads to some obvious follow questions:) - What are the concerns/issues with this approach? Isn't this the intended mechanism for extending support for new stuff under ASP.

Re: [IronPython] IronPython (PythonCodePovider) for ASP.NET?

2006-07-25 Thread Slide
If you could combine something like Twisted with ASP.NET...woohoo! On 7/25/06, Dino Viehland <[EMAIL PROTECTED]> wrote: > We actually do have a PythonCodeProvider that can be enabled by setting up a > web.config that points at IronPython.dll's PythonProvider class. It is > highly experimental a

Re: [IronPython] ImportError: No module named parser

2006-07-25 Thread Dino Viehland
Well, it's only a problem if you need the parser module :) I've opened CodePlex work item 1347 for this - http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=1347 - it'll have to wait until after 1.0 at this point though because we're too close to the 1.0 release. We'

Re: [IronPython] IronPython (PythonCodePovider) for ASP.NET?

2006-07-25 Thread Dino Viehland
We actually do have a PythonCodeProvider that can be enabled by setting up a web.config that points at IronPython.dll's PythonProvider class. It is highly experimental and using this compilation mode doesn't pass our full test suite - in other words you might find some features work incorrectly

[IronPython] IronPython (PythonCodePovider) for ASP.NET?

2006-07-25 Thread Will Sadkin
Except for one casual mention of this back in August of last year, I can't find any mention of any plans for this. For me, this is the "holy grail" for IronPython; I need a rapid webapp design and implementation framework, but ideally would like to use Python to drive the business logic behind it.

[IronPython] ImportError: No module named parser

2006-07-25 Thread HEMMI, Shigeru
In IP, parser - an interface to Python's internal parser, is not implemented. Is it a problem or not? IronPython 1.0.60712 (Beta) on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import parser Traceback (most recent call last): File , line 0, in ##3 File , lin

Re: [IronPython] Ah, DataGridView- my cruel, inconstant muse.

2006-07-25 Thread Martin Maly
Which method on the DataGridViewCheckBoxColumn are you calling?   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jeff sacksteder Sent: Monday, July 24, 2006 9:42 PM To: users@lists.ironpython.com Subject: [IronPython] Ah, DataGridView- my cruel, inconstant muse.

[IronPython] Ah, DataGridView- my cruel, inconstant muse.

2006-07-25 Thread jeff sacksteder
DataGridViewCheckBoxColumns seem to return (True|None) instead of (True|False) even if The ThreeState and FalseValue attributes are set to 'False'.  One of us is in error... ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/lis