<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] implement clr.GetString and clr.GetBytes as helper to convert strings to and from bytes</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] IronPython thread module does not allow small stack sizes</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[New comment] Passing globals/locals with eval()</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[New comment] help broken for Vista x64</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[New comment] Implement mmap module</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_6">6. <span class="tocTitle">[New comment] Implement mmap module</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_7">7. <span class="tocTitle">[New comment] STRESS: test_cominterop.py fails under the gcstress test mode</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_8">8. <span class="tocTitle">[New comment] PYC - Allow the Setting of the Icon if generating EXE</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_9">9. <span class="tocTitle">[New comment] Create wiki for 3rd party apps compat list</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_10">10. <span class="tocTitle">[New comment] Use Windows SDK for builds instead of Visual C++</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_11">11. <span class="tocTitle">[New comment] I can't import PIL module</span> <span class="anchorMarker">↓</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] implement clr.GetString and clr.GetBytes as helper to convert strings to and from bytes</span> <a href="http://ironpython.codeplex.com/workitem/7159">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Fixed in 24317f5</p>"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] IronPython thread module does not allow small stack sizes</span> <a href="http://ironpython.codeplex.com/workitem/7827">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Fixed in 796152</p>"</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [New comment] Passing globals/locals with eval()</span> <a href="http://ironpython.codeplex.com/workitem/16884">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>This must have been fixed at some point:</p><p>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>&gt;&gt;&gt; def a():<br>...     print locals()<br>...     print globals()<br>...<br>&gt;&gt;&gt; eval(a.func_code, { 'test' : 1})<br>{}<br>{'test': 1, '__builtins__': &lt;module '__builtin__' (built-in)&gt;}<br>&gt;&gt;&gt;<br></p>"</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [New comment] help broken for Vista x64</span> <a href="http://ironpython.codeplex.com/workitem/19258">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Fixed in 41763cf</p>"</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [New comment] Implement mmap module</span> <a href="http://ironpython.codeplex.com/workitem/21401">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Looks like mmap.__doc__ prints out 'None' on Python 2.7</p><p>Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32<br>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>&gt;&gt;&gt; import mmap<br>&gt;&gt;&gt; print mmap.__doc__<br>None<br>&gt;&gt;&gt;</p><p>Should be an easy implementation to close this out.</p>"</p></div><div class="topic"><a name="toc_issue_6"></a><div class="topicHeader"><span class="topicTitle">6. [New comment] Implement mmap module</span> <a href="http://ironpython.codeplex.com/workitem/21401">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Fixed the \__doc__ issue in c65b87</p>"</p></div><div class="topic"><a name="toc_issue_7"></a><div class="topicHeader"><span class="topicTitle">7. [New comment] STRESS: test_cominterop.py fails under the gcstress test mode</span> <a href="http://ironpython.codeplex.com/workitem/21438">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Marking this as resolved since we don't have a way to reproduce the gcstress that was internal to MS.</p>"</p></div><div class="topic"><a name="toc_issue_8"></a><div class="topicHeader"><span class="topicTitle">8. [New comment] PYC - Allow the Setting of the Icon if generating EXE</span> <a href="http://ironpython.codeplex.com/workitem/22138">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>I am current rewriting pyc a bit and will include support for setting a .ico file for the stub exe.</p>"</p></div><div class="topic"><a name="toc_issue_9"></a><div class="topicHeader"><span class="topicTitle">9. [New comment] Create wiki for 3rd party apps compat list</span> <a href="http://ironpython.codeplex.com/workitem/22223">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Created https://github.com/IronLanguages/main/wiki/Compatibility-List to be used for application compatibility list.</p>"</p></div><div class="topic"><a name="toc_issue_10"></a><div class="topicHeader"><span class="topicTitle">10. [New comment] Use Windows SDK for builds instead of Visual C++</span> <a href="http://ironpython.codeplex.com/workitem/30024">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>Since we no longer need IronStudio or IronPythonTools, can we switch to the SDK for builds in general?</p>"</p></div><div class="topic"><a name="toc_issue_11"></a><div class="topicHeader"><span class="topicTitle">11. [New comment] I can't import PIL module</span> <a href="http://ironpython.codeplex.com/workitem/31865">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>This is related to CP376, IronPython could give better information when a pyd is needed for the module.</p>"</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="http://ironpython.codeplex.com/subscriptions/workitem/project/edit">unsubscribe or change your issue notification settings</a> on CodePlex.com.</p></div></div></body></html>