[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

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] 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 stdin##3 File ,

[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.

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=IronPythonWorkItemId=1347 - it'll have to wait until after 1.0 at this point though because we're too close to the 1.0 release.

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 and

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

[IronPython] Seek fails

2006-07-25 Thread Benoist JAMIN
I need to get file size. Heres 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] 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.Ifapackage'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

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: