<html><head><style type="text/css" media="screen">Body{font-family: Verdana;font-size:.75em;}h4{font-size:.9em;}a{color: #3a62a6;}.digest .toc {margin-bottom: 15px; padding-bottom:8px; border-bottom: 1px solid #ccc;}.digest .tocItem {margin-bottom: 15px;}.tocItem a{color:#000;text-decoration: none;}.tocItem a:hover{color: #3a62a6;text-decoration: underline;}.topic{padding-bottom: 8px;margin-bottom: 20px; border-bottom: 1px solid #ccc;}.topicHeader{margin-bottom:10px;}.topicTitle{font-weight: bold;}.replies p{margin:0;padding:0;}.replies hr{width: 15%;text-align: left;margin: 0 auto 5px 0;border: none 0;border-top: 1px solid #ccc;height: 1px;}.reply{margin-bottom: 6px;padding-bottom: 4px;}.anchorMarker{color: #3a62a6;}.footer{color: gray;}</style></head><body><div class="digest"><p>Hi ironpython,</p><p>Here's your Daily Digest of new issues for project "<a href="http://ironpython.codeplex.com/">IronPython</a>".</p><p>In today's digest:</p><h4>ISSUES</h4><div class="toc"><div class="tocItem"><a href="#toc_issue_1">1. <span class="tocTitle">[New comment] ctypes&#58; Compatibility issue with CPython</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] xml.dom.minidom.parse not working in ironpython 2.7</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[Status update] AttributeError&#58; &#39;file&#39; object has no attribute &#39;readinto&#39;,but Cpython has this attribute.</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[New comment] ctypes.c_uint32 fails with TypeError when overflowed</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[New comment] Automatic CLR method overload picking logic needs to be revisited.</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div></div><h4>ISSUES</h4><div class="topic"><a name="toc_issue_1"></a><div class="topicHeader"><span class="topicTitle">1. [New comment] ctypes&#58; Compatibility issue with CPython</span> <a href="http://ironpython.codeplex.com/workitem/32048">view online</a></div><p>User MarioVilas has commented on the issue:</p><p>"As a side note, I tried working around this by changing all calls to &#34;byref&#34; to &#34;pointer&#34; instead. No more Python exceptions &#58;&#41; but the example above still didn&#39;t work. The API call would fail and the error message indicated the structure pointer was wrong. I fixed it by changing LPVOID &#40;an alias to c_void_p&#41; to POINTER&#40;OSVERSIONINFOEXA&#41;, so I didn&#39;t dig deeper into it, but there may be an additional bug related to using void pointers in &#34;argtypes&#34;."</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] xml.dom.minidom.parse not working in ironpython 2.7</span> <a href="http://ironpython.codeplex.com/workitem/32049">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Currently the pyexpat module is not implemented for IronPython, there is an implementation of pyexpact for FePy that can be found at fepy.sf.net. I am in the process of implementing this module natively in IronPython."</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [Status update] AttributeError&#58; &#39;file&#39; object has no attribute &#39;readinto&#39;,but Cpython has this attribute.</span> <a href="http://ironpython.codeplex.com/workitem/23801">view online</a></div><p>User slide_o_mix has updated the issue:</p><p>Status has changed from Active to Closed with the following comment, <br /><br />"Fixed"</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [New comment] ctypes.c_uint32 fails with TypeError when overflowed</span> <a href="http://ironpython.codeplex.com/workitem/30390">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"This is happening &#40;at least the first case&#41; because BigInt.AsUint32 checks if the value is &#60;&#61; UInt32.MaxValue, which 2&#42;&#42;32 is not, so it returns false. What needs to happen is the value needs to be sheared to 0 in this case."</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [New comment] Automatic CLR method overload picking logic needs to be revisited.</span> <a href="http://ironpython.codeplex.com/workitem/25859">view online</a></div><p>User JeffreySax has commented on the issue:</p><p>"Here&#39;s another issue involving overload resolution. Consider the following C&#35; code&#58;<br /><br />public class A &#123;<br />    public virtual void DoSomething&#40;A a&#41; &#123; Console.WriteLine&#40;&#34;From A using A&#34;&#41;&#59; &#125;<br />    public virtual void DoSomething&#40;B b&#41; &#123; Console.WriteLine&#40;&#34;From A using B&#34;&#41;&#59; &#125;<br />&#125;<br />public class B &#58; A &#123;<br />    public override void DoSomething&#40;A a&#41; &#123; Console.WriteLine&#40;&#34;From B using A&#34;&#41;&#59; &#125;<br />&#125;<br /><br />&#62;&#62;&#62; x &#61; A&#40;&#41;<br />&#62;&#62;&#62; y &#61; B&#40;&#41;<br />&#62;&#62;&#62; x.DoSomething&#40;y&#41;<br />From A using B<br />&#62;&#62;&#62; x.DoSomething&#40;x&#41;<br />From A using A<br />&#62;&#62;&#62; y.DoSomething&#40;x&#41;<br />From B using A<br />&#62;&#62;&#62; y.DoSomething&#40;y&#41;<br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62;<br />TypeError&#58; Multiple targets could match&#58; DoSomething&#40;A&#41;, DoSomething&#40;B&#41;<br /><br />There should be no ambiguity here since y is of type B, and so the second overload should be preferred &#40;no implicit conversion needed&#41;.<br /><br />The same sequence of calls from C&#35; gives &#40;correctly&#41;&#58;<br />From A using A<br />From A using B<br />From B using A<br />From A using B<br />"</p></div><div class="footer"><p>You are receiving this email because you subscribed to notifications on CodePlex.</p><p>To report a bug, request a feature, or add a comment, visit <a href="http://ironpython.codeplex.com/workitem/list/basic">IronPython Issue Tracker</a>. You can <a href="https://ironpython.codeplex.com/subscriptions/workitem/project/edit">unsubscribe or change your issue notification settings</a> on CodePlex.com.</p></div></div></body></html>