<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] Using reference to unicode function on unicode string containing non-ASCII characters throws UnicodeDecodeError</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New issue] nt.kill(pid, sig) ignores sig argument</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] Using reference to unicode function on unicode string containing non-ASCII characters throws UnicodeDecodeError</span> <a href="http://ironpython.codeplex.com/workitem/29505">view online</a></div><p>User pacrook has commented on the issue:</p><p>"<p>I hit the same issue trying to use unicode with map. The following works in Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)]</p><p>> \>\>\> print '\t'.join(map(unicode, [u'\xe5', 1.0]))<br>å 1.0</p><p>but in IronPython 2.7.4 (2.7.0.40) on .NET 4.0.30319.34003 (64-bit)<br>> \>\>\> print '\t'.join(map(unicode, [u'\xe5', 1.0]))<br>Traceback (most recent call last):<br> File "<stdin>", line 1, in <module><br>UnicodeDecodeError: ('unknown', u'\xe5', 0, 1, '')</p><p>the problem arises from the map(unicode, ...) call, e.g.<br>> \>\>\> print map(unicode, [u'\xe5', 1.0])<br>Traceback (most recent call last):<br> File "<stdin>", line 1, in <module><br>UnicodeDecodeError: ('unknown', u'\xe5', 0, 1, '')</p><p>introducing a labda reference as suggested above fixes the Iron Python version of the code:<br>> \>\>\> print '\t'.join(map(lambda x:unicode(x), [u'\xe5', 1.0]))<br>å 1.0 </p><p></p>"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New issue] nt.kill(pid, sig) ignores sig argument</span> <a href="http://ironpython.codeplex.com/workitem/34928">view online</a></div><p>User paweljasinski has proposed the issue:</p><p>"nt.kill ignores sig arguments and performs unconditional Terminate<br />
It should distinguish CTRL_C_EVENT, CTRL_BREAK_EVENT and try to use GenerateConsoleCtrlEvent<br />
This of course on Windows only, mono on linux can use posix signals."</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>