This looks like it's equivalent to 19434:
http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=19434

On Wed, Nov 19, 2008 at 8:42 AM, Glenn Jones
<[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> wrote:

> Hi all,
>
> It's us again!
> With this object:
> from System.IO import MemoryStream
>
> class MockStream(MemoryStream):
>     def __init__(self):
>         MemoryStream.__init__(self)
>         self.closed = False
>
>     def Close(self):
>         print 'Into close'
>         MemoryStream.Close(self)
>         print 'Past close'
>         self.closed = True
>
> IronPython 1.1:
> >>> import mockstream
> >>> m = mockstream.MockStream()
> >>> m.Close()
> Into close
> Past close
> >>>
>
> IronPython 2.0 latest code drop:
> >>> import mockstream
> >>> m = mockstream.MockStream()
> >>> m.Close()
> Into close
> ....
> repeated to StackOverflowException
>
> We'll raise this one and the issue we reported earlier as soon as codeplex
> starts behaving itself again.
>
> Thanks
> Glenn & Michael
>
>
>
> _______________________________________________
> Users mailing list
> [email protected]
> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
>
>
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to