<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] Problem with indexers of generic collections</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] Import System does not work when script called from C&#35;</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[Status update] Rename &#42;.cs files to properly reflect the CPython builtin modules they implement</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[Status update] Place for discussion</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[Status update] IDLE-like syntax-highlighting editor</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_6">6. <span class="tocTitle">[Status update] Visual Studio&#58; package did not load correctly</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_7">7. <span class="tocTitle">[Status update] urllib.quote returns wrong hex values</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_8">8. <span class="tocTitle">[Status update] Could not add reference to assembly Microsoft.Scripting.Core</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_9">9. <span class="tocTitle">[New comment] IronPython allows obj.None - should be a SyntaxError</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_10">10. <span class="tocTitle">[New comment] ipy.exe crashes when launched from a subst UNC path</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_11">11. <span class="tocTitle">[New comment] ipy.exe hangs with 100&#37; CPU core usage when inserting certain data into DB</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_12">12. <span class="tocTitle">[New comment] Incorrect line reported in traceback</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_13">13. <span class="tocTitle">[New comment] pyc fails if a file contains a call to unicode</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_14">14. <span class="tocTitle">[New comment] 8-bit strings can&#39;t contain characters &#62; 0x80</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_15">15. <span class="tocTitle">[Status update] 1.1.2&#58;  Re-adding event handlers broken in 1.1</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] Problem with indexers of generic collections</span> <a href="http://ironpython.codeplex.com/workitem/32217">view online</a></div><p>User VitalySavkin has proposed the issue:</p><p>"For generic .NET types the problem happens when a first access to the indexer is wrong, for example&#58;<br /><br />Right&#58;<br />IronPython 2.7 Alpha 1 &#40;2.7.0.1&#41; on .NET 4.0.30319.1<br />Type &#34;help&#34;, &#34;copyright&#34;, &#34;credits&#34; or &#34;license&#34; for more information.<br />&#62;&#62;&#62; import System<br />&#62;&#62;&#62; d &#61; System.Collections.Generic.Dictionary&#91;str, int&#93;&#40;&#41;<br />&#62;&#62;&#62; d&#91;&#39;0&#39;&#93;<br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62;<br />KeyError&#58; The given key was not present in the dictionary.<br />&#62;&#62;&#62; d&#91;0&#93;<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; expected str, got int<br />&#62;&#62;&#62; d&#91;&#39;0&#39;&#93;<br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62;<br />KeyError&#58; The given key was not present in the dictionary.<br /><br />Wrong&#58;<br />IronPython 2.7 Alpha 1 &#40;2.7.0.1&#41; on .NET 4.0.30319.1<br />Type &#34;help&#34;, &#34;copyright&#34;, &#34;credits&#34; or &#34;license&#34; for more information.<br />&#62;&#62;&#62; import System<br />&#62;&#62;&#62; d &#61; System.Collections.Generic.Dictionary&#91;str, int&#93;&#40;&#41;<br />&#62;&#62;&#62; d&#91;0&#93;<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; expected str, got int<br />&#62;&#62;&#62; d&#91;&#39;0&#39;&#93;<br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62;<br />AttributeError&#58; &#39;str&#39; object has no attribute &#39;__index__&#39;<br />&#62;&#62;&#62; d.__getitem__&#40;&#39;0&#39;&#41;<br />Traceback &#40;most recent call last&#41;&#58;<br />  File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62;<br />KeyError&#58; The given key was not present in the dictionary."</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] Import System does not work when script called from C&#35;</span> <a href="http://ironpython.codeplex.com/workitem/19249">view online</a></div><p>User MarkusSchaber has commented on the issue:</p><p>"Please keep the amount of implicitly added assembly references down to a minimum in hosted&#47;embedded IronPython environments by default &#40;or at least add an option to do so&#41;. In some &#40;sandboxed&#41; environments, we only want to expose explicitly added assemblies to the scripts."</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [Status update] Rename &#42;.cs files to properly reflect the CPython builtin modules they implement</span> <a href="http://ironpython.codeplex.com/workitem/21026">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 in 2.7.1"</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [Status update] Place for discussion</span> <a href="http://ironpython.codeplex.com/workitem/30168">view online</a></div><p>User slide_o_mix has updated the issue:</p><p>Status has changed from Proposed to Closed with the following comment, <br /><br />"Not an issue."</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [Status update] IDLE-like syntax-highlighting editor</span> <a href="http://ironpython.codeplex.com/workitem/20293">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 />"Python Tools for Visual Studio is the recommended IPy editor."</p></div><div class="topic"><a name="toc_issue_6"></a><div class="topicHeader"><span class="topicTitle">6. [Status update] Visual Studio&#58; package did not load correctly</span> <a href="http://ironpython.codeplex.com/workitem/29767">view online</a></div><p>User slide_o_mix has updated the issue:</p><p>Status has changed from Proposed to Closed with the following comment, <br /><br />"IronPython Studio is no longer supported. Please use Python Tools for Visual Studio."</p></div><div class="topic"><a name="toc_issue_7"></a><div class="topicHeader"><span class="topicTitle">7. [Status update] urllib.quote returns wrong hex values</span> <a href="http://ironpython.codeplex.com/workitem/28233">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 />"Can&#39;t reproduce in 2.7.1"</p></div><div class="topic"><a name="toc_issue_8"></a><div class="topicHeader"><span class="topicTitle">8. [Status update] Could not add reference to assembly Microsoft.Scripting.Core</span> <a href="http://ironpython.codeplex.com/workitem/28397">view online</a></div><p>User slide_o_mix has updated the issue:</p><p>Status has changed from Proposed to Closed with the following comment, <br /><br />"These assemblies are now integrated into System.Core in .NET 4.0"</p></div><div class="topic"><a name="toc_issue_9"></a><div class="topicHeader"><span class="topicTitle">9. [New comment] IronPython allows obj.None - should be a SyntaxError</span> <a href="http://ironpython.codeplex.com/workitem/669">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"This is still an issue in 2.7.1"</p></div><div class="topic"><a name="toc_issue_10"></a><div class="topicHeader"><span class="topicTitle">10. [New comment] ipy.exe crashes when launched from a subst UNC path</span> <a href="http://ironpython.codeplex.com/workitem/28905">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"The interesting thing is running ipy.exe from the same server location &#40;not using the subst path&#41; works just fine. "</p></div><div class="topic"><a name="toc_issue_11"></a><div class="topicHeader"><span class="topicTitle">11. [New comment] ipy.exe hangs with 100&#37; CPU core usage when inserting certain data into DB</span> <a href="http://ironpython.codeplex.com/workitem/26500">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"I&#39;m unable to reproduce this on 2.7.1 with ipy.exe and SQL Server 2008. I don&#39;t have a 2005 instance to play with. Can you try with 2008 and see if the issue still exists&#63; Also, can you do the same thing in a C&#35; app with no issue&#63;"</p></div><div class="topic"><a name="toc_issue_12"></a><div class="topicHeader"><span class="topicTitle">12. [New comment] Incorrect line reported in traceback</span> <a href="http://ironpython.codeplex.com/workitem/24164">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Can we close this out as fixed in 2.7&#63;"</p></div><div class="topic"><a name="toc_issue_13"></a><div class="topicHeader"><span class="topicTitle">13. [New comment] pyc fails if a file contains a call to unicode</span> <a href="http://ironpython.codeplex.com/workitem/26593">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"Can we close this out as working in 2.7.1&#63;"</p></div><div class="topic"><a name="toc_issue_14"></a><div class="topicHeader"><span class="topicTitle">14. [New comment] 8-bit strings can&#39;t contain characters &#62; 0x80</span> <a href="http://ironpython.codeplex.com/workitem/14104">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"It&#39;s failing here&#58;<br /><br />IronPython.Runtime.PythonAsciiEncoding.GetCharCount&#40;Byte&#91;&#93; bytes, Int32 index, Int32 count&#41;<br /><br />There is a check if the byte value is &#62; 0x7f"</p></div><div class="topic"><a name="toc_issue_15"></a><div class="topicHeader"><span class="topicTitle">15. [Status update] 1.1.2&#58;  Re-adding event handlers broken in 1.1</span> <a href="http://ironpython.codeplex.com/workitem/13685">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 />"Works in 2.7.1"</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>