<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] Trivial: SyntaxError for invalid indentation gives different line number</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] Ctrl-Z dosn't work right after KeyboardInterrupt</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[Status update] Could not get dependencies for project reference 'PythonLibrary1'</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work for few RSS feeds</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[New comment] test_ipyc.test_cached_types failed throwing SystemError under .NET 4.0 Beta</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_6">6. <span class="tocTitle">[New comment] "TypeError: find_module() takes exactly 2 arguments" during debug a script load customize DLLs</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_7">7. <span class="tocTitle">[New issue] ElementTree does not handle UTF-8 encoding</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] Trivial: SyntaxError for invalid indentation gives different line number</span> <a href="http://ironpython.codeplex.com/workitem/5736">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>This is working correctly in the latest.</p>"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] Ctrl-Z dosn't work right after KeyboardInterrupt</span> <a href="http://ironpython.codeplex.com/workitem/9135">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>This works in latest.</p>"</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [Status update] Could not get dependencies for project reference 'PythonLibrary1'</span> <a href="http://ironpython.codeplex.com/workitem/10245">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 />"Not enough information to reproduce."</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work for few RSS feeds</span> <a href="http://ironpython.codeplex.com/workitem/11587">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 />"This sample is no longer valid."</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [New comment] test_ipyc.test_cached_types failed throwing SystemError under .NET 4.0 Beta</span> <a href="http://ironpython.codeplex.com/workitem/24509">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>I don't get the same issue with the latest code. I get the following:</p><p>TypeError: : unsupported base type for new-style class Microsoft.Scripting.Actions.NamespaceTracker:IronPythonTest.BinderTest</p>"</p></div><div class="topic"><a name="toc_issue_6"></a><div class="topicHeader"><span class="topicTitle">6. [New comment] "TypeError: find_module() takes exactly 2 arguments" during debug a script load customize DLLs</span> <a href="http://ironpython.codeplex.com/workitem/32989">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"<p>This works in the latest, so it seems it was fixed at some point in the past.</p>"</p></div><div class="topic"><a name="toc_issue_7"></a><div class="topicHeader"><span class="topicTitle">7. [New issue] ElementTree does not handle UTF-8 encoding</span> <a href="http://ironpython.codeplex.com/workitem/35635">view online</a></div><p>User ysitu has proposed the issue:</p><p>"<pre><code>>>> import tempfile
>>> from xml.etree.ElementTree import ElementTree
>>> xml = '<?xml version="1.0" encoding="UTF-8"?>\n<test name="' + unichr(169) + '"/>\n'
>>> with tempfile.TemporaryFile() as f:
...     f.write(bytes(xml, 'utf-8'))  # use xml.encode('utf-8') in CPython 2.7
...     f.flush()
...     f.seek(0)
...     tree = ElementTree(file=f)
...     name = next(tree.iter()).get('name')
...     print(repr(name))
...     assert name == unichr(169)
...
u'\xc2\xa9'
Traceback (most recent call last):
  File "<stdin>", line 8, in <module>
AssertionError</code></pre>

<code>unichr(169)</code> is the copyright sign "©" and is encoded in UTF-8 as <code>b'\xc2\xa9'</code>. The two-byte encoding is ignored by <code>ElementTree</code> and gets interpreted as two separate characters."</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>