<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 issue] zlib fails to compress an empty string</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] binascii.b2a_qp is present but throws NotImplemented breaking quopri standard module.</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[New comment] Remove obsolete APIs after IronPython 2.6 ships</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[New comment] &#34;from System.Net import &#42;&#34; throws &#34;SystemError&#58; Object reference not set to an instance of an object&#34;</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[New comment] CPython&#39;s test_fileio.py broken under IPy</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_6">6. <span class="tocTitle">[New comment] Implement zipimport module</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_7">7. <span class="tocTitle">[New comment] Implement zipimport module</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 issue] zlib fails to compress an empty string</span> <a href="http://ironpython.codeplex.com/workitem/31976">view online</a></div><p>User slide_o_mix has proposed the issue:</p><p>"Error in IronPython&#58;<br /><br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;C&#58;&#92;Users&#92;acearl&#92;Desktop&#92;test.py&#34;, line 11, in &#60;module&#62;<br />  File &#34;C&#58;&#92;Users&#92;acearl&#92;Code&#92;IronLanguagesMain&#92;External.LCA_RESTRICTED&#92;Languages<br />&#92;IronPython&#92;27&#92;Lib&#92;zipfile.py&#34;, line 1094, in writestr<br />zlib.error&#58; Error -3 while compressing&#58; buffer error<br /><br />CPython does not output an error and successfully creates the zip file.<br /><br />Code to reproduce&#58;<br /><br />import sys<br />import zipimport, time<br />from zipfile import &#42;<br /><br />z &#61; ZipFile&#40;&#39;foo.zip&#39;, &#39;w&#39;&#41;<br />zinfo &#61; ZipInfo&#40;&#39;foo.py&#39;, time.localtime&#40;&#41;&#41;<br />zinfo.compress_type &#61; ZIP_DEFLATED<br />z.writestr&#40;zinfo, &#39;&#39;&#41;"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] binascii.b2a_qp is present but throws NotImplemented breaking quopri standard module.</span> <a href="http://ironpython.codeplex.com/workitem/4928">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"I get a different error on the latest trunk&#58; <br /><br />TypeError&#58; b2a_qp&#40;&#41; got an unexpected keyword argument &#39;header&#39;"</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [New comment] Remove obsolete APIs after IronPython 2.6 ships</span> <a href="http://ironpython.codeplex.com/workitem/20775">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Do you have a list of those API&#39;s that can be removed&#63;"</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [New comment] &#34;from System.Net import &#42;&#34; throws &#34;SystemError&#58; Object reference not set to an instance of an object&#34;</span> <a href="http://ironpython.codeplex.com/workitem/25806">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"I don&#39;t see a modules.misc file in the source tree, is this available somewhere else&#63;"</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [New comment] CPython&#39;s test_fileio.py broken under IPy</span> <a href="http://ironpython.codeplex.com/workitem/24686">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Added check for sys.platform &#33;&#61; &#34;cli&#34; in test_fileio.py, will merge test file."</p></div><div class="topic"><a name="toc_issue_6"></a><div class="topicHeader"><span class="topicTitle">6. [New comment] Implement zipimport module</span> <a href="http://ironpython.codeplex.com/workitem/391">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Implemented in https&#58;&#47;&#47;github.com&#47;IronLanguages&#47;main&#47;pull&#47;49"</p></div><div class="topic"><a name="toc_issue_7"></a><div class="topicHeader"><span class="topicTitle">7. [New comment] Implement zipimport module</span> <a href="http://ironpython.codeplex.com/workitem/391">view online</a></div><p>User jdhardy has commented on the issue:</p><p>"Fixed in 9c479d1&#47;1d6ffca."</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>