[Ironpython-users] IronPython, Daily Digest 10/20/2014

CodePlex no_reply at codeplex.com
Tue Oct 21 09:20:37 CEST 2014


Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New comment] Trivial: SyntaxError for invalid indentation gives different line number
2. [New comment] Ctrl-Z dosn't work right after KeyboardInterrupt
3. [Status update] Could not get dependencies for project reference 'PythonLibrary1'
4. [Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work for few RSS feeds
5. [New comment] test_ipyc.test_cached_types failed throwing SystemError under .NET 4.0 Beta
6. [New comment] "TypeError: find_module() takes exactly 2 arguments" during debug a script load customize DLLs
7. [New issue] ElementTree does not handle UTF-8 encoding

----------------------------------------------

ISSUES

1. [New comment] Trivial: SyntaxError for invalid indentation gives different line number
http://ironpython.codeplex.com/workitem/5736
User slide_o_mix has commented on the issue:

"<p>This is working correctly in the latest.</p>"-----------------

2. [New comment] Ctrl-Z dosn't work right after KeyboardInterrupt
http://ironpython.codeplex.com/workitem/9135
User slide_o_mix has commented on the issue:

"<p>This works in latest.</p>"-----------------

3. [Status update] Could not get dependencies for project reference 'PythonLibrary1'
http://ironpython.codeplex.com/workitem/10245
User slide_o_mix has updated the issue:
Status has changed from Active to Closed with the following comment, 

"Not enough information to reproduce."-----------------

4. [Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work for few RSS feeds
http://ironpython.codeplex.com/workitem/11587
User slide_o_mix has updated the issue:
Status has changed from Active to Closed with the following comment, 

"This sample is no longer valid."-----------------

5. [New comment] test_ipyc.test_cached_types failed throwing SystemError under .NET 4.0 Beta
http://ironpython.codeplex.com/workitem/24509
User slide_o_mix has commented on the issue:

"<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>"-----------------

6. [New comment] "TypeError: find_module() takes exactly 2 arguments" during debug a script load customize DLLs
http://ironpython.codeplex.com/workitem/32989
User slide_o_mix has commented on the issue:

"<p>This works in the latest, so it seems it was fixed at some point in the past.</p>"-----------------

7. [New issue] ElementTree does not handle UTF-8 encoding
http://ironpython.codeplex.com/workitem/35635
User ysitu has proposed the issue:

">>> 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

unichr(169) is the copyright sign "©" and is encoded in UTF-8 as b'\xc2\xa9'. The two-byte encoding is ignored by ElementTree and gets interpreted as two separate characters."
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue Tracker. You can unsubscribe or change your issue notification settings on CodePlex.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20141021/f3f75d8e/attachment.html>


More information about the Ironpython-users mailing list