no, not at all, I just played around at the console trying to find bugs.. :)<br>That said, it probably would suck pretty badly if I was using doctest or something similar..<br><br>/S<br><br><div><span class="gmail_quote">On 7/6/06,
<b class="gmail_sendername">Dino Viehland</b> <<a href="mailto:dinov@exchange.microsoft.com">dinov@exchange.microsoft.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>
<div link="blue" vlink="purple" lang="EN-US">
<div>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);">Thanks again for the bug report. I've opened bug 797 to track
this one</span></p>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"><a href="http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=797" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=797</a></span></p>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);">Is this currently blocking you? The reason I ask is we're only
differing by a couple of things (the property name being the obviously most
egregious one) and it'd be nice to have an idea how we should prioritize this.
</span></p>
<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<div style="border-style: solid none none; border-color: rgb(145, 192, 255) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0in 0in;">
<p><b><span style="font-size: 9pt;">From:</span></b><span style="font-size: 9pt;"> <a href="mailto:users-bounces@lists.ironpython.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">users-bounces@lists.ironpython.com
</a>
[mailto:<a href="mailto:users-bounces@lists.ironpython.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">users-bounces@lists.ironpython.com</a>] <b>On Behalf Of </b>Simon Dahlbacka<br>
<b>Sent:</b> Wednesday, July 05, 2006 12:29 PM<br>
<b>To:</b> Discussion of IronPython<br>
<b>Subject:</b> [IronPython] __slots__ and __str__/__repr__</span></p>
</div></div><div><span class="e" id="q_10c408680736d89a_1">
<p> </p>
<p>CPython2.4.1<br>
>>>class foo(object):<br>
... __slots__ = ["bar"]<br>
...<br>
>>>foo.bar<br>
<member 'foo' of 'foo' objects><br>
>>> f = foo()<br>
>>> f.bar<br>
Traceback (most recent call last): <br>
File "<stdin>", line 1, in ?<br>
AttributeError: bar<br>
<br>
<br>
<br>
<br>
Ironpython beta8<br>
>>>class foo(object):<br>
... __slots__ = ["bar"]<br>
>>>foo.bar<br>
<property# foo on Object_1> <br>
>>> f = foo()<br>
>>> f.bar<br>
Traceback (most recent call last):<br>
File , line 0, in <stdin>##42<br>
File , line 0, in get_bar##43<br>
AttributeError: '<class '__main__.foo'>' object has no attribute 'bar' </p>
</span></div><div></div>
</div>
</div><br>_______________________________________________<br>users mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:users@lists.ironpython.com">users@lists.ironpython.com</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a><br><br><br></blockquote></div><br>