<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] NotImplementedError: buffer_info not implemented for the array module</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] Should sys.getfilesystemencoding() return 'mbcs' now that this is a supported encoding?</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[New comment] simplify use of .net enumeration</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] NotImplementedError: buffer_info not implemented for the array module</span> <a href="http://ironpython.codeplex.com/workitem/23778">view online</a></div><p>User jdhardy has commented on the issue:</p><p>"<p>slide_o_mix: the method in question in .buffer_in*f*o, not .buffer_in*t*o. Re-opening in case this still needs to be fixed.</p>"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] Should sys.getfilesystemencoding() return 'mbcs' now that this is a supported encoding?</span> <a href="http://ironpython.codeplex.com/workitem/24220">view online</a></div><p>User jdhardy has commented on the issue:</p><p>"<p>CPython uses mbcs on Windows in both 2.7 and 3.3. However, I don't think it works properly on IronPython:</p><p>```<br>IronPython 2.7.5b3 (2.7.5.0) on .NET 4.0.30319.34014 (32-bit)<br>Type "help", "copyright", "credits" or "license" for more information.<br>>>> x = "euro(?), Latin-2 (L) or Latin-1 (รค)"<br>>>> x<br>u'euro(\u20ac), Latin-2 (\u0141) or Latin-1 (\xe4)'<br>>>> x.decode('mbcs')<br>Traceback (most recent call last):<br> File "<stdin>", line 1, in <module><br> File "ironlanguages\External.LCA_RESTRICTED\Languages\IronPython\27\Lib\encodings\mbcs.py", line 21, in decode<br>UnicodeEncodeError: ('ascii', u'\u20ac', 5, 6, "'ascii' codec can't decode byte 20AC in position 5: ordinal not in range")<br>>>> with open(x, 'w') as f:<br>... f.write(x)<br>...<br>Traceback (most recent call last):<br> File "<stdin>", line 2, in <module><br>UnicodeEncodeError: ('unknown', '\x00', 0, 1, "'ascii' codec can't encode character '\\u20AC' in position 5")<br>>>><br>```</p>"</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [New comment] simplify use of .net enumeration</span> <a href="http://ironpython.codeplex.com/workitem/35650">view online</a></div><p>User jdhardy has commented on the issue:</p><p>"<p>Based on what's in the issue I can't really reproduce it:</p><p>```<br>>>> import clr<br>>>> from System import Enum<br>>>> from System.Net.Sockets import SocketOptionName<br>>>> x = SocketOptionName.MaxConnections<br>>>> int(x)<br>2147483647<br>>>> w = Enum.ToObject(SocketOptionName, 2147483647)<br>>>> x == w<br>True<br>```</p><p>I had to force them to be different objects (to avoid a trivial `is` match), but it seems to work for me.</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>