Re: [IronPython] Sockets and Standard Library Modules in IronPython

2007-06-05 Thread Eric Larson
the fire to get these things working :) Thanks! Eric Larson On 6/5/07, Fuzzyman [EMAIL PROTECTED] wrote: Hello all, A plea to 'the team'. urllib and urllib2 are Python standard libraries modules that provide a high level interface to accessing internet resources. They are widely used

Re: [IronPython] Sockets and Standard Library Modules in IronPython

2007-06-05 Thread Eric Larson
On 6/5/07, Sanghyeon Seo [EMAIL PROTECTED] wrote: 2007/6/6, Eric Larson [EMAIL PROTECTED]: I would suppose getting these libs to work would also make httplib2 work as well. httplib2 is a *great* library that does an excellent job with caching, etags and authentication, all of which are huge

[IronPython] __getattr__ overflow

2006-09-18 Thread Eric Larson
Hi, I was trying to wrap a rather verbose library to something more concise. Essentially, I have a module with a bunch of static functions and I wanted to create an object that automatically adds a prefix to the function calls. For example: my_wrapper.CallFunction(*args)Would be

Re: [IronPython] A SourceForge project?

2006-09-18 Thread Eric Larson
+1 for sourceforge. On 9/15/06, David Fraser [EMAIL PROTECTED] wrote: Sanghyeon Seo wrote: I am thinking about creating a SourceForge project, to host files under http://sparcs.kaist.ac.kr/~tinuviel/fepy/ directory. So that you can keep up-to-date just by doing svn update. So that I can release

Re: [IronPython] Trying (unsuccessfully) to subclass Gtk.Widget class

2006-09-18 Thread Eric Larson
I think you might have to set your module your of your PythonEngine to __main__. For example:PythonEngine myPyEngine = new PythonEngine(someEngineOptions);EngineModule mainModule = myPyEngine.CreateModule (__main__, someVariables, true);myPyEngine.ExecuteFile(someScriptFile, mainModule);There are

Re: [IronPython] Implementing WSGI server as ASP.NET handler

2006-03-30 Thread Eric Larson
That is rad. :)On 3/30/06, Sanghyeon Seo [EMAIL PROTECTED] wrote: Hello, I got a proof-of-concept WSGI server as ASP.NET handlerworking, using IronPython.My development environment is Debian GNU/Linux with latest Mono andXSP, and IronPython 1.0 Beta 4 with patches.All the relevant codes are here.

Re: [IronPython] .NET Attributes

2006-03-27 Thread Eric Larson
On the topic of decorators and integrating with .NET, it seems that in order to keep IronPython as close to CPython, it would be a good idea to consider adding .NET specific pieces as a library instead of an addition to the language. That way people could write python code that works in IronPython

[IronPython] Visual Studio Integration

2006-02-10 Thread Eric Larson
I was curious how/if I can use Visual Studio 2005 with IronPython. I realize that I probably *can* use it of course, but I was wondering about the obvious niceties such as intellisense and code highlighting. Great Stuff! Eric ___ users mailing list