Re: [IronPython] [python] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Tim Riley
I tested with the svn version of pyexpat you linked to but still no luck. Tim On Dec 27, 2007 6:14 PM, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: > 2007/12/28, Tim Riley <[EMAIL PROTECTED]>: > > Yeah something isn't right. > > Can you try again after updating pyexpat.py from SVN? > https://fepy.svn

Re: [IronPython] [python] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Sanghyeon Seo
2007/12/28, Tim Riley <[EMAIL PROTECTED]>: > Yeah something isn't right. Can you try again after updating pyexpat.py from SVN? https://fepy.svn.sourceforge.net/svnroot/fepy/trunk/lib/pyexpat.py I fixed a bug with CDATA handling. That might be it. -- Seo Sanghyeon ___

Re: [IronPython] [python] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Michael Foord
Hmm... no '__delattr__' or '__getattribute__' to start with - and more importantly no entries. Odd. I wonder if an exception is being raised in fetching the feed (or something...) and being suppressed by feedparser. I'm afraid that unless anyone has any direct experience of using feedparser wi

Re: [IronPython] [python] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Tim Riley
Yeah something isn't right. Python 2.5 output gives me: ['__class__', '__cmp__', '__contains__', '__delattr__', '__delitem__', '__dict__', '__doc__', '__eq__', '__ge__', '__getattr__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '

Re: [IronPython] [python] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Michael Foord
Tim Riley wrote: > I am trying to access my gmail account using the latest IronPython > Community Edition (IPY, not IPY2) and the python feedparser library. > When I run the following script through python 2.5 everything works > great, however when I run it through ipy.exe I get an error. I was > w

[IronPython] IronPython Community Edition - FeedParser Weirdness

2007-12-27 Thread Tim Riley
I am trying to access my gmail account using the latest IronPython Community Edition (IPY, not IPY2) and the python feedparser library. When I run the following script through python 2.5 everything works great, however when I run it through ipy.exe I get an error. I was wondering if anyone has any

Re: [IronPython] [python] Import Performance

2007-12-27 Thread Davy Mitchell
Hi All, Okay had a go at narrowing down the issue - appears to be the 'import compiler' line taking around 2 seconds. The importing seems pretty fast - possibly the exceptions in IronPython being generated causing the slowdown. Here's the test code I used: import sys import datetime print datetim