Re: [IronPython] Dynamic overloading of Reflected Methods

2006-01-16 Thread Dino Viehland
This looks like a bug (or two). We currently don't allow you to override reflected methods on a per-instance basis (or at least the C# side won't see it). We also don't allow you to construct bound ReflectedMethod's in the manner that you'd like. Currently we only really expect the IronPyth

Re: [IronPython] Newbie mono question (setting up lib path)

2006-01-16 Thread Tim Riley
This works for me using Mono 1.1.13 and IronPython 1.0.2190 on Windows XP.IronPython 1.0.2190 (Beta) on .NET 2.0.50727.42Copyright (c) Microsoft Corporation. All rights reserved.>>> import sys >>> sys.path.append('c:\Python24\Lib')>>> import string>>> dir(string)['ImportError', 'KeyError', 'Templat

Re: [IronPython] Newbie mono question (setting up lib path)

2006-01-16 Thread Zoltan Varga
Hi, You might be running into a mono bug instead of an IronPython bug. Try the MS runtime, and if that works, then its a mono bug, and you should report it at bugzilla.ximian.com. Zoltan On 1/14/06, m h <[EMAIL PROTECTED]

Re: [IronPython] Newbie mono question (setting up lib path)

2006-01-16 Thread m h
h, string.py is in "\\tmp\\ipython\\IronPython-1.0-Beta1\\Lib" which is in my path... mharrison[1080] mono IronPythonConsole.exe IronPython 1.0.2190 (Beta) on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import string Traceback (most recent call last): Im

[IronPython] import __main__ (ImportError:)

2006-01-16 Thread Hector Miuler Malpica Gallegos
Hello friends, I have problems when trying to execute script I throw in python:  [EMAIL PROTECTED]:/usr/lib/python2.4$ python Python 2.4.2 (#2, Nov 20 2005, 17:04:48) [GCC 4.0.3 2005 (prerelease) (Debian 4.0.2-4)] on linux2 Type "help", "copyright", "credits" or "license" for more informa

[IronPython] Dynamic overloading of Reflected Methods

2006-01-16 Thread Thomas
hi, I'm trying to dynamically overload an objects methods with IP. Something like: class A: def test(self): print "A" a = A() def newtest(self): print "newtest" testType = type(a.test) a.test

Re: [IronPython] Newbie question: can I build .NET assemblies from Python code?

2006-01-16 Thread J. Merrill
At 03:36 AM 1/15/2006, Devin Ganger wrote >J. Merrill wrote: > >> Actually, I just took a look and the RADIUS library is _not_ >> C-based. However, it relies on at least one Python standard >> library that is not yet implemented in IronPython. So you're >> in the same situation -- the RADIUS l

[IronPython] toolbox use in IronPython...

2006-01-16 Thread Nicolas Georgakopoulos
Hello all , I'm just wondering if there is a way to design forms and add components just like in other .NET languages (C#,VB drag and drop style) ? I wont to avoid writing code by hand for buttons etc... ___ users mailing list users@lists.ironpython.com