Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New comment] iter(object) does not raise TypeError
2. [New comment] iter(object) does not raise TypeError
3. [New comment] from multiprocessing.pool import ThreadPool fails

----------------------------------------------

ISSUES

1. [New comment] iter(object) does not raise TypeError
http://ironpython.codeplex.com/workitem/34705
User paweljasinski has commented on the issue:

"<p>additional test case which should work at the same 
time:<br>```<br>&gt;&gt;&gt; class Foo(object):<br>        def 
__iter__(self):<br>...     bar = &quot;bar&quot;<br>...     baz = 1<br>...     
class __metaclass__(type):<br>...         def __iter__(self):<br>...            
 for attr in dir(Foo):<br>...                 if not 
attr.startswith(&quot;__&quot;):<br>...                     yield 
attr<br>...<br>&gt;&gt;&gt; iter(Foo)<br>&lt;generator object __iter__ at 
0x6ffffef2f50&gt;<br>&gt;&gt;&gt; for f in Foo:<br>...     print 
f<br>...<br>bar<br>baz<br>&gt;&gt;&gt;<br>```</p><p></p>"-----------------

2. [New comment] iter(object) does not raise TypeError
http://ironpython.codeplex.com/workitem/34705
User paweljasinski has commented on the issue:

"<p>the second line of the snipped should not be there<br>```<br>class 
Foo(object):<br>    bar = &quot;bar&quot;<br>    baz = 1<br>    class 
__metaclass__(type):<br>        def __iter__(self):<br>            for attr in 
dir(Foo):<br>                if not attr.startswith(&quot;__&quot;):<br>        
            yield attr<br>for f in Foo:<br>    print 
f<br>```</p>"-----------------

3. [New comment] from multiprocessing.pool import ThreadPool fails
http://ironpython.codeplex.com/workitem/34959
User paweljasinski has commented on the issue:

"<p>fixed in 7e78d327d4c8750fd4c97a6f9ec0bcf5b51e22e5</p>"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.
_______________________________________________
Ironpython-users mailing list
Ironpython-users@python.org
https://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to